diff --git a/src/routes/lazy.tsx b/src/routes/lazy.tsx new file mode 100644 index 00000000..c061a924 --- /dev/null +++ b/src/routes/lazy.tsx @@ -0,0 +1,13 @@ +import { PropsWithChildren, Suspense } from 'react'; +import Loading from "../common/component/Loading"; +type Props = {} + +const Lazy = ({ children }: PropsWithChildren) => { + return ( + }> + {children} + + ); +}; + +export default Lazy; \ No newline at end of file