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