Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import {combineReducers} from 'redux';
- import reducer from './reducer';
- export default combineReducers({
- metadata: reducer('metadata'),
- strings: (state = {}, action) =>
- action && action.type === 'strings' ? action.payload : state,
- });
Add Comment
Please, Sign In to add comment