Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { createHigherOrderComponent } from '@wordpress/compose';
import { useGeoLocationQuery } from './use-geolocation-query';
export const withGeoLocation = createHigherOrderComponent(
( Wrapped ) => ( props ) => {
const { data } = useGeoLocationQuery();
return <Wrapped { ...props } geo={ data } />;
},
'withGeoLocation'
);