mirror of
https://github.com/plankanban/planka.git
synced 2025-07-23 15:19:44 +02:00
21 lines
375 B
JavaScript
Executable file
21 lines
375 B
JavaScript
Executable file
import { combineReducers } from 'redux';
|
|
|
|
import router from './router';
|
|
import socket from './socket';
|
|
import db from './db';
|
|
import auth from './auth';
|
|
import login from './login';
|
|
import app from './app';
|
|
import user from './user';
|
|
import project from './project';
|
|
|
|
export default combineReducers({
|
|
router,
|
|
socket,
|
|
db,
|
|
auth,
|
|
login,
|
|
app,
|
|
user,
|
|
project,
|
|
});
|