export default function Layout({ children }) { return ( <div> <h2>Layout</h2> <div>{children}</div> </div> ) }