mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
c07702330d
* Moving entityGetter to utility folder * Import whitespace and if statement braces * newlines between multi-line if's
20 lines
542 B
JavaScript
20 lines
542 B
JavaScript
import { combineReducers } from 'redux';
|
|
import { routerReducer } from 'react-router-redux';
|
|
|
|
import app from './nodes/app/reducer';
|
|
import auth from './nodes/auth/reducer';
|
|
import components from './nodes/components/reducer';
|
|
import entities from './nodes/entities/reducer';
|
|
import notifications from './nodes/notifications/reducer';
|
|
import redirectLocation from './nodes/redirectLocation/reducer';
|
|
|
|
export default combineReducers({
|
|
app,
|
|
auth,
|
|
components,
|
|
entities,
|
|
notifications,
|
|
redirectLocation,
|
|
routing: routerReducer,
|
|
});
|