summaryrefslogtreecommitdiff
path: root/frontend/src/containers/app/timeline/TimelineLabelsContainer.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/app/timeline/TimelineLabelsContainer.js')
-rw-r--r--frontend/src/containers/app/timeline/TimelineLabelsContainer.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/frontend/src/containers/app/timeline/TimelineLabelsContainer.js b/frontend/src/containers/app/timeline/TimelineLabelsContainer.js
deleted file mode 100644
index 192d21c3..00000000
--- a/frontend/src/containers/app/timeline/TimelineLabelsContainer.js
+++ /dev/null
@@ -1,15 +0,0 @@
-import { connect } from 'react-redux'
-import TimelineLabelsComponent from '../../../components/app/timeline/TimelineLabelsComponent'
-
-const mapStateToProps = state => {
- return {
- currentTick: state.currentTick,
- lastSimulatedTick: state.lastSimulatedTick,
- }
-}
-
-const TimelineLabelsContainer = connect(mapStateToProps)(
- TimelineLabelsComponent,
-)
-
-export default TimelineLabelsContainer