import { useSelectOptions } from "../../useSelectOptions"; import { SellForm } from "../types"; export const Provider = ({ children }: { children: any }) => { const { options } = useSelectOptions(); return ( {children} ); };