Files
jellyfin-web/src/components/loading/LoadingComponent.tsx
T
2023-11-09 00:53:09 -05:00

18 lines
299 B
TypeScript

import { FunctionComponent, useEffect } from 'react';
import loading from './loading';
const Loading: FunctionComponent = () => {
useEffect(() => {
loading.show();
return () => {
loading.hide();
};
}, []);
return null;
};
export default Loading;