1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
alice-lg-alice-lg/client/reducer/app-reducer.jsx

41 lines
862 B
React
Raw Normal View History

2017-05-16 13:34:00 +02:00
import { combineReducers } from 'redux'
// Library Reducers
import { routerReducer } from 'react-router-redux'
// Application Reducers
import routeserversReducer
from 'components/routeservers/reducer'
import modalsReducer
from 'components/modals/reducer'
import errorsReducer
from 'components/errors/reducer'
import configReducer
from 'components/config/reducer'
import contentReducer
from 'components/content/reducer'
2017-05-16 13:34:00 +02:00
import lookupReducer
from 'components/lookup/reducer'
2018-07-16 09:02:15 +02:00
import routesReducer
from 'components/routeservers/routes/reducer'
2017-05-16 13:34:00 +02:00
export default combineReducers({
routeservers: routeserversReducer,
2018-07-16 09:02:15 +02:00
routes: routesReducer,
2017-05-16 13:34:00 +02:00
modals: modalsReducer,
routing: routerReducer,
lookup: lookupReducer,
errors: errorsReducer,
config: configReducer,
content: contentReducer,
2017-05-16 13:34:00 +02:00
});