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