Files
AnimeTV-Frontend/app/layout.tsx
2025-07-09 09:00:48 +07:00

16 lines
383 B
TypeScript

import "./globals.css";
import GeistFontProvider from "@/providers/fonts/GeistFontProvider";
import React from "react";
const RootLayout = ({ children }: Readonly<{ children: React.ReactNode }>) => {
return (
<html lang="en" className="dark">
<body>
<GeistFontProvider>{children}</GeistFontProvider>
</body>
</html>
);
};
export default RootLayout;