turkmen-tv-front/app/(main)/treasury/layout.tsx

16 lines
282 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
import MaterialsProvider from "@/providers/MaterialsProvider";
interface IProps {
children: React.ReactNode;
}
function RootLayout({ children }: IProps) {
return (
<div>
<MaterialsProvider>{children}</MaterialsProvider>
</div>
);
}
export default RootLayout;