import './red.css'
import './green.css'
export default async function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en">
<body style={{ fontFamily: 'var(--font-sans)' }}>{children}</body>
</html>
)
}