mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
19 lines
328 B
JavaScript
Executable file
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,
|
|
});
|