Massive refactor complete

This commit is contained in:
2019-05-31 13:44:01 +10:00
parent b97d8fc184
commit 4a2bfb3db9
47 changed files with 1223 additions and 991 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
import { combineReducers } from 'redux';
import { accountReducer } from './accounts.js';
import { combatReducer } from './combat.js';
import { accountReducer } from './account.js';
import { profileReducer } from './profile.js';
//compile all reducers together
export default combineReducers({
account: accountReducer,
/* combat: combatReducer */
profile: profileReducer
});