vito/resources/js/hooks/use-mobile-navigation.ts
2025-05-10 11:10:11 +03:00

9 lines
225 B
TypeScript

import { useCallback } from 'react';
export function useMobileNavigation() {
return useCallback(() => {
// Remove pointer-events style from body...
document.body.style.removeProperty('pointer-events');
}, []);
}