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
2017-05-16 13:34:00 +02:00

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