Files
ontime/apps/client/src/features/keep-awake/KeepAwake.tsx
T
2025-11-28 11:26:23 +01:00

11 lines
179 B
TypeScript

import { useWakelock } from './useWakeLock';
/**
* Composes the wakelock hook to contain re-renders
*/
export default function KeepAwake() {
useWakelock();
return null;
}