added mockup users page and login page

This commit is contained in:
Maren Süwer
2018-07-02 16:05:58 +02:00
parent cdbdbf40ca
commit e087920ba5
7 changed files with 285 additions and 8 deletions

View File

@@ -4,13 +4,15 @@ import { createStore, compose, applyMiddleware, combineReducers } from 'redux';
import { routerReducer, routerMiddleware } from 'react-router-redux';
import page from './modules/page';
import users from './modules/users';
function createReduxStore(history) {
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
const reducer = combineReducers({
router: routerReducer,
page
page,
users
});
return createStore(