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
2018-07-16 09:02:15 +02:00

41 lines
862 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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'
import lookupReducer
from 'components/lookup/reducer'
import routesReducer
from 'components/routeservers/routes/reducer'
export default combineReducers({
routeservers: routeserversReducer,
routes: routesReducer,
modals: modalsReducer,
routing: routerReducer,
lookup: lookupReducer,
errors: errorsReducer,
config: configReducer,
content: contentReducer,
});