diff options
Diffstat (limited to 'frontend/src/components/async/Lazy.tsx')
-rw-r--r-- | frontend/src/components/async/Lazy.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/async/Lazy.tsx b/frontend/src/components/async/Lazy.tsx index 2a0496223..317c0feb3 100644 --- a/frontend/src/components/async/Lazy.tsx +++ b/frontend/src/components/async/Lazy.tsx @@ -1,5 +1,5 @@ -import { LoadingOverlay } from "@mantine/core"; import { FunctionComponent, PropsWithChildren, Suspense } from "react"; +import { LoadingOverlay } from "@mantine/core"; const Lazy: FunctionComponent<PropsWithChildren> = ({ children }) => { return <Suspense fallback={<LoadingOverlay visible />}>{children}</Suspense>; |