1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-24 23:59:48 +02:00
planka/client/src/reducers/index.js

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,
});