import { FunctionComponent } from 'react'; const Main: FunctionComponent = ({ children }) => { return
{children}
; }; export default Main;