summaryrefslogtreecommitdiff
path: root/frontend/src/containers/app/map/DatacenterContainer.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/app/map/DatacenterContainer.js')
-rw-r--r--frontend/src/containers/app/map/DatacenterContainer.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/frontend/src/containers/app/map/DatacenterContainer.js b/frontend/src/containers/app/map/DatacenterContainer.js
deleted file mode 100644
index 9ed1d38c..00000000
--- a/frontend/src/containers/app/map/DatacenterContainer.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import { connect } from 'react-redux'
-import DatacenterGroup from '../../../components/app/map/groups/DatacenterGroup'
-
-const mapStateToProps = state => {
- if (state.currentDatacenterId === -1) {
- return {}
- }
-
- return {
- datacenter: state.objects.datacenter[state.currentDatacenterId],
- interactionLevel: state.interactionLevel,
- }
-}
-
-const DatacenterContainer = connect(mapStateToProps)(DatacenterGroup)
-
-export default DatacenterContainer