You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
293 B
JavaScript
18 lines
293 B
JavaScript
import { combineReducers } from 'redux';
|
|
|
|
import router from './router';
|
|
import socket from './socket';
|
|
import orm from './orm';
|
|
import auth from './auth';
|
|
import core from './core';
|
|
import ui from './ui';
|
|
|
|
export default combineReducers({
|
|
router,
|
|
socket,
|
|
orm,
|
|
auth,
|
|
core,
|
|
ui,
|
|
});
|