import type React from 'react' interface LayoutProps { children: React.ReactNode } const Layout: React.FC = async ({ children }) => { return
{children}
} export default Layout