File size: 268 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { combineReducers } from 'redux';  // It combines the reducers into one
import home from './home_reducer';
import movie from './movie_reducer';

// combining our reducers
const rootReducer = combineReducers({
    home,
    movie
});

export default rootReducer;