Revert "Can successfully register and login in UI"

This reverts commit 893cad7e7e.

reverting commit
This commit is contained in:
Aditya Sankaran
2019-10-02 21:38:23 -04:00
parent 5acc7a64e0
commit 3b682bae18
35 changed files with 8339 additions and 9516 deletions

View File

@@ -0,0 +1,18 @@
import { createStore, combineReducers, applyMiddleware, compose } from 'redux';
import thunk from 'redux-thunk';
import userReducer from './reducers/userReducer';
import dataReducer from './reducers/dataReducer';
import uiReducer from './reducers/uiReducer';
const initialState = {};
const middleware = {thunk};
const reducers = combineReducers({
user: userReducer,
data: dataReducer,
UI: uiReducer
});
//const store = createStore(reducers, )

View File