You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/frontend/src/components/async/Lazy.tsx

9 lines
259 B

import { LoadingOverlay } from "@mantine/core";
import { FunctionComponent, Suspense } from "react";
const Lazy: FunctionComponent = ({ children }) => {
return <Suspense fallback={<LoadingOverlay visible />}>{children}</Suspense>;
};
export default Lazy;