AllenYuan

src/reducers/index.js first reducers

Apr 27th, 2020
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import {combineReducers} from 'redux';
  2. import reducer from './reducer';
  3.  
  4. export default combineReducers({
  5.   metadata: reducer('metadata'),
  6.   strings: (state = {}, action) =>
  7.     action && action.type === 'strings' ? action.payload : state,
  8. });
Add Comment
Please, Sign In to add comment