Files
frontend/src/app/layout.js
Amirhossein Mahmoodi f2e199ee8a formatting
2024-08-18 11:11:58 +03:30

19 lines
550 B
JavaScript

import { AuthProvider } from "@/lib/contexts/auth";
import { TableSettingProvider } from "@/lib/contexts/tableSetting";
export const metadata = {
title: "سامانه جامع راهداری",
};
export default function RootLayout({ children }) {
return (
<html lang="fa" dir={"rtl"}>
<body style={{ height: "100vh", width: "100vw" }}>
<AuthProvider>
<TableSettingProvider>{children}</TableSettingProvider>
</AuthProvider>
</body>
</html>
);
}