material-you-react/app/layout.tsx

12 lines
169 B
TypeScript
Raw Normal View History

2024-01-31 23:46:06 +03:00
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}