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