route-reducer.js 128 B

12345
  1. export const routeReducer = (state = {}, { type, match }) => {
  2. if (type === 'ROUTE')
  3. return match
  4. return state
  5. }