7 lines
225 B
TypeScript
7 lines
225 B
TypeScript
import { PropsWithChildren } from "react";
|
|
import { CustomersProvider } from "../context";
|
|
|
|
export const CustomersLayout = ({ children }: PropsWithChildren) => {
|
|
return <CustomersProvider>{children}</CustomersProvider>;
|
|
};
|