summaryrefslogtreecommitdiff
path: root/frontend/src/containers/app/map/layers/MapLayer.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/app/map/layers/MapLayer.js')
-rw-r--r--frontend/src/containers/app/map/layers/MapLayer.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/frontend/src/containers/app/map/layers/MapLayer.js b/frontend/src/containers/app/map/layers/MapLayer.js
deleted file mode 100644
index 8596cb9c..00000000
--- a/frontend/src/containers/app/map/layers/MapLayer.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import { connect } from 'react-redux'
-import MapLayerComponent from '../../../../components/app/map/layers/MapLayerComponent'
-
-const mapStateToProps = (state) => {
- return {
- mapPosition: state.map.position,
- mapScale: state.map.scale,
- }
-}
-
-const MapLayer = connect(mapStateToProps)(MapLayerComponent)
-
-export default MapLayer