UNPKG

react-adminlte-components

Version:

React Components that use AdminLTE theme

11 lines (7 loc) 254 B
import {connect} from 'react-redux'; import {Switch} from 'react-router-dom'; const mapStateToProps = state => { return {location: state.routing.location}; }; const ConnectedSwitch = connect(mapStateToProps)(Switch); export default ConnectedSwitch;