import { createHigherOrderComponent } from '@wordpress/compose'; import { useGeoLocationQuery } from './use-geolocation-query'; export const withGeoLocation = createHigherOrderComponent( ( Wrapped ) => ( props ) => { const { data } = useGeoLocationQuery(); return ; }, 'withGeoLocation' );