+
Your Current Location
+
+ Latitude:
+ {latitude}
+
+
+ Longitude:
+ {longitude}
+
+
+
+ Enter the distance below:
+
+
this.handleChange(e.target.value)}
+ />
+
+
+ );
+ }
+}
+
+CurrentLocationComponent.propTypes = {
+ filter: PropTypes.object,
+ currentLocation: PropTypes.object,
+ onDistanceChange: PropTypes.func
+};
+
+export default CurrentLocationComponent;
diff --git a/modules/geolocation/client-react/components/GeolocationView.jsx b/modules/geolocation/client-react/components/GeolocationView.jsx
new file mode 100644
index 000000000..4dbbc06eb
--- /dev/null
+++ b/modules/geolocation/client-react/components/GeolocationView.jsx
@@ -0,0 +1,28 @@
+import React from 'react';
+import Helmet from 'react-helmet';
+import PropTypes from 'prop-types';
+import { PageLayout } from '@gqlapp/look-client-react';
+import settings from '@gqlapp/config';
+import CurrentLocation from '../containers/CurrentLocation';
+
+const renderMetaData = t => (
+