1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import reducers from "./reducers" import * as actions from "./actions" import * as selectors from "./selectors" import * as wrapSelectors from "./spec-extensions/wrap-selector" export default function() { return { statePlugins: { layout: { reducers, actions, selectors }, spec: { wrapSelectors } } } }