import { ReactNode, FunctionComponent } from 'react'; type LayoutPropsType = { children?: ReactNode; }; const Layout: FunctionComponent = ({ children }: LayoutPropsType) => (
{children}
); export default Layout;