UNPKG

template-ivan

Version:
19 lines (14 loc) 391 B
// @flow import { combineReducers } from 'redux' import { routerReducer } from 'react-router-redux' import welcome from './welcome' import type { Welcome } from '../actions/welcome' // 全局State, 各个节点state的Intersection Types export type State = { +welcome: Welcome, routing: any, } export default combineReducers({ welcome, routing: routerReducer, // 整合路由 })