2019-08-31 04:07:25 +05:00
|
|
|
import { combineReducers } from 'redux';
|
|
|
|
|
|
|
|
import router from './router';
|
|
|
|
import socket from './socket';
|
2019-10-18 08:06:34 +05:00
|
|
|
import orm from './orm';
|
2019-08-31 04:07:25 +05:00
|
|
|
import auth from './auth';
|
2020-05-29 19:31:19 +05:00
|
|
|
import core from './core';
|
2019-10-18 08:06:34 +05:00
|
|
|
import authenticateForm from './forms/authenticate';
|
|
|
|
import userCreateForm from './forms/user-create';
|
|
|
|
import projectCreateForm from './forms/project-create';
|
2019-08-31 04:07:25 +05:00
|
|
|
|
|
|
|
export default combineReducers({
|
|
|
|
router,
|
|
|
|
socket,
|
2019-10-18 08:06:34 +05:00
|
|
|
orm,
|
2019-08-31 04:07:25 +05:00
|
|
|
auth,
|
2020-05-29 19:31:19 +05:00
|
|
|
core,
|
2019-10-18 08:06:34 +05:00
|
|
|
authenticateForm,
|
|
|
|
userCreateForm,
|
|
|
|
projectCreateForm,
|
2019-08-31 04:07:25 +05:00
|
|
|
});
|