blob: 225b6038d7fbf06c3826e698e858a74fdd525560 [file] [log] [blame]
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}