Karmanad/src/app/layout.tsx

18 lines
250 B
TypeScript
Raw Permalink Normal View History

2024-11-17 19:45:44 +03:00
import "./globals.css";
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
2024-11-17 19:48:14 +03:00
className={``}
2024-11-17 19:45:44 +03:00
>
{children}
</body>
</html>
);
}