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

7 lines
225 B
TypeScript

import { PropsWithChildren } from "react";
import { CustomersProvider } from "../context";
export const CustomersLayout = ({ children }: PropsWithChildren) => {
return <CustomersProvider>{children}</CustomersProvider>;
};