Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { combineReducers } from 'redux';
|
||||
import { authentication } from './auth.reducer';
|
||||
|
||||
/*
|
||||
* We combine all reducers into a single object before updated data is dispatched (sent) to store
|
||||
* Your entire applications state (store) is just whatever gets returned from all your reducers
|
||||
* */
|
||||
|
||||
const allReducers = combineReducers({
|
||||
authentication
|
||||
});
|
||||
|
||||
export default allReducers;
|
||||
Reference in New Issue
Block a user