1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 13:19:44 +02:00
planka/client/src/reducers/index.js
2023-10-17 19:18:19 +02:00

19 lines
328 B
JavaScript
Executable file

import { combineReducers } from 'redux';
import router from './router';
import socket from './socket';
import orm from './orm';
import root from './root';
import auth from './auth';
import core from './core';
import ui from './ui';
export default combineReducers({
router,
socket,
orm,
root,
auth,
core,
ui,
});