import { FunctionComponent, Suspense } from "react"; import { LoadingIndicator } from "."; const Lazy: FunctionComponent = ({ children }) => { return }>{children}; }; export default Lazy;