mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-13 03:13:47 +00:00
11 lines
179 B
TypeScript
11 lines
179 B
TypeScript
import { useWakelock } from './useWakeLock';
|
|
|
|
/**
|
|
* Composes the wakelock hook to contain re-renders
|
|
*/
|
|
export default function KeepAwake() {
|
|
useWakelock();
|
|
|
|
return null;
|
|
}
|