antd-npm-demo
Version:
React & Redux & Ant.Design
23 lines (20 loc) • 495 B
JavaScript
/**
* States
*
*/
import globalInitState from './modules/global/globalInitState'
import replyInitState from './modules/reply/replyInitState'
import topicInitState from './modules/topic/topicInitState'
import userInitState from './modules/user/userInitState'
/**
* 初始化states
*
* @return {[type]} [description]
*/
const initialState = {
global: new globalInitState,
reply: new replyInitState,
topic: new topicInitState,
user: new userInitState
}
export default initialState