blob: 9d7f268d13d8b1b4d4d6d318d8afc5a206a6c35e (
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/app/timeline/TimelineLabelsComponent";
const mapStateToProps = state => {
return {
currentTick: state.currentTick,
lastSimulatedTick: state.lastSimulatedTick
};
};
const TimelineLabelsContainer = connect(mapStateToProps)(
TimelineLabelsComponent
);
export default TimelineLabelsContainer;
|