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, 15 insertions, 0 deletions
diff --git a/frontend/src/containers/app/timeline/TimelineLabelsContainer.js b/frontend/src/containers/app/timeline/TimelineLabelsContainer.js
new file mode 100644
index 00000000..9d7f268d
--- /dev/null
+++ b/frontend/src/containers/app/timeline/TimelineLabelsContainer.js
@@ -0,0 +1,15 @@
+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;