blob: f6cd4e2a11248b554eff9324dd09e07aff5ba2ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import actions from '../actions'
import { connect } from 'react-redux'
import NavigateComponent from '../components/Navigate'
const mapStateToProps = (state) => {
return {
vehicleJourneys: state.vehicleJourneys,
status: state.status,
pagination: state.pagination,
filters: state.filters
}
}
const Navigate = connect(mapStateToProps)(NavigateComponent)
export default Navigate
|