1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-22 14:57:40 +01:00
smov/src/components/video/controls/LoadingControl.tsx

10 lines
213 B
TypeScript
Raw Normal View History

import { useVideoPlayerState } from "../VideoContext";
export function LoadingControl() {
const { videoState } = useVideoPlayerState();
if (!videoState.isLoading) return null;
return <p>Loading...</p>;
}