Files
roxane/resources/js/hooks/use-mobile-navigation.ts

9 lines
237 B
TypeScript
Raw Permalink Normal View History

2025-10-22 17:09:48 +02:00
import { useCallback } from 'react';
export function useMobileNavigation() {
return useCallback(() => {
// Remove pointer-events style from body...
document.body.style.removeProperty('pointer-events');
}, []);
}