10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import './globals.css'
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html suppressHydrationWarning>
|
|
<body suppressHydrationWarning>{children}</body>
|
|
</html>
|
|
)
|
|
}
|