Files
firma/app/layout.tsx
nabijonovdavronbek619@gmail.com aa2260f212 translation bug fixed
2025-11-29 13:48:55 +05:00

19 lines
418 B
TypeScript

import { ReactNode } from "react";
import "../i18n/request"; // i18n config faylini import qilamiz
import { LanguageProvider } from "@/context/language-context";
import './globals.css'
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="uz">
<body>
<LanguageProvider>
{children}
</LanguageProvider>
</body>
</html>
);
}