import React, { ReactNode, FunctionComponent } from 'react'; interface IProps { children: ReactNode; } const Layout: FunctionComponent = ({ children }) =>
{children}
; export default Layout;