import { FC, ReactNode, Suspense } from "react"; import Loading from "@/components/Loading"; type Props = { children?: ReactNode; }; const Lazy: FC = ({ children }) => { return }>{children}; }; export default Lazy;