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