|
@@ -4,6 +4,8 @@ import createBrowserHistory from 'history/createBrowserHistory'
|
|
import ThunkMiddleware from 'redux-thunk'
|
|
import ThunkMiddleware from 'redux-thunk'
|
|
import LoggerMiddleware from 'redux-logger'
|
|
import LoggerMiddleware from 'redux-logger'
|
|
|
|
|
|
|
|
+import { spinner } from './spinner'
|
|
|
|
+import { notification } from './notification'
|
|
import { app } from './app'
|
|
import { app } from './app'
|
|
import { containers } from './containers'
|
|
import { containers } from './containers'
|
|
import { requests } from './requests'
|
|
import { requests } from './requests'
|
|
@@ -11,6 +13,8 @@ import { requests } from './requests'
|
|
const history = createBrowserHistory()
|
|
const history = createBrowserHistory()
|
|
|
|
|
|
const rootReducer = combineReducers({
|
|
const rootReducer = combineReducers({
|
|
|
|
+ spinner,
|
|
|
|
+ notification,
|
|
app,
|
|
app,
|
|
containers,
|
|
containers,
|
|
requests,
|
|
requests,
|