mirror of
https://github.com/vitodeploy/vito.git
synced 2025-05-14 03:53:35 +00:00
9 lines
225 B
TypeScript
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');
|
|
}, []);
|
|
}
|