connect.js 287 Bytes
import { connect } from 'react-redux'

const mapState = state => ({
    userRoute: state.route.route,
})

const mapDispatch = dispatch => ({
    add: route =>  dispatch.route.add(route),
    change: route => dispatch.route.change(route)
})


export default connect(mapState, mapDispatch)