mirror of
https://github.com/plankanban/planka.git
synced 2025-07-24 23:59:48 +02:00
21 lines
479 B
JavaScript
Executable file
21 lines
479 B
JavaScript
Executable file
import { combineReducers } from 'redux';
|
|
|
|
import router from './router';
|
|
import socket from './socket';
|
|
import orm from './orm';
|
|
import auth from './auth';
|
|
import app from './app';
|
|
import authenticateForm from './forms/authenticate';
|
|
import userCreateForm from './forms/user-create';
|
|
import projectCreateForm from './forms/project-create';
|
|
|
|
export default combineReducers({
|
|
router,
|
|
socket,
|
|
orm,
|
|
auth,
|
|
app,
|
|
authenticateForm,
|
|
userCreateForm,
|
|
projectCreateForm,
|
|
});
|