Uecko_ERP/modules/customers/src/web/components/customers-layout.tsx

7 lines
225 B
TypeScript
Raw Normal View History

2025-08-11 17:49:52 +00:00
import { PropsWithChildren } from "react";
import { CustomersProvider } from "../context";
export const CustomersLayout = ({ children }: PropsWithChildren) => {
return <CustomersProvider>{children}</CustomersProvider>;
};