UNPKG

237 BTypeScriptView Raw
1/**
2 * Hook to detect if the user is on a mobile device
3 * Notice that this hook will only detect the device type in effect, so it will always be false in server side
4 */
5declare const useMobile: () => boolean;
6export default useMobile;