import React from 'react' export default function DefaultLayout({ children, }: { children: React.ReactNode }) { return ( <html> <body>{children}</body> </html> ) }