Files
test_polis/laravel/resources/js/hooks/use-mobile-navigation.ts
2026-02-04 23:23:42 +07:00

11 lines
285 B
TypeScript

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');
}, []);
}