summaryrefslogtreecommitdiff
path: root/frontend/src/containers/app/timeline/TimelineLabelsContainer.js
blob: 192d21c3862af8636267c8b0f0fcc0a6350b2633 (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