blob: b6ff0774b026f62da8a9933390259c0b73224daf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import {connect} from "react-redux";
import TimelineLabelsComponent from "../../components/timeline/TimelineLabelsComponent";
const mapStateToProps = state => {
return {
currentTick: state.currentTick,
lastSimulatedTick: state.lastSimulatedTick,
};
};
const TimelineLabelsContainer = connect(
mapStateToProps
)(TimelineLabelsComponent);
export default TimelineLabelsContainer;
|