import React from 'react'; export interface LayoutProps { children: JSX.Element | JSX.Element[]; } const Layout = ({ children }: LayoutProps): JSX.Element => { return
{children}
; }; export default Layout;