build: format the code with prettier
This commit is contained in:
+4
-7
@@ -1,16 +1,13 @@
|
||||
import { ReactNode, Suspense, FC } from "react";
|
||||
import { FC, ReactNode, Suspense } from "react";
|
||||
|
||||
import Loading from "@/components/Loading";
|
||||
|
||||
type Props = {
|
||||
children?: ReactNode;
|
||||
}
|
||||
};
|
||||
|
||||
const Lazy: FC<Props> = ({ children }) => {
|
||||
return (
|
||||
<Suspense fallback={<Loading fullscreen={true} />}>
|
||||
{children}
|
||||
</Suspense>
|
||||
);
|
||||
return <Suspense fallback={<Loading fullscreen={true} />}>{children}</Suspense>;
|
||||
};
|
||||
|
||||
export default Lazy;
|
||||
|
||||
Reference in New Issue
Block a user