NEW_CPM/resources/js/hooks/use-mobile-navigation.ts
2025-04-02 17:49:09 +05:45

11 lines
267 B
TypeScript

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