ChronicleNext / frontend /src /app /layout.tsx
topguy's picture
feat: Implement secure Hugging Face OAuth and patch Next.js vulnerability
31bd72c
Raw
History Blame Contribute Delete
245 Bytes
import './globals.css';
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<body>
{children}
</body>
</html>
);
}