CAPS04-FE-REFACTOR / resources /js /hooks /use-mobile-navigation.ts
wepee's picture
setup: new project laravel 13 react with inertia
ec474ac
Raw
History Blame Contribute Delete
285 Bytes
import { useCallback } from 'react';
export type CleanupFn = () => void;
export function useMobileNavigation(): CleanupFn {
return useCallback(() => {
// Remove pointer-events style from body...
document.body.style.removeProperty('pointer-events');
}, []);
}