18 lines
364 B
JavaScript
18 lines
364 B
JavaScript
// import reducers from "./reducers"
|
|
// import * as actions from "./actions"
|
|
import * as wrapSelectors from "./wrap-selectors"
|
|
import components from "./components"
|
|
import wrapComponents from "./wrap-components"
|
|
|
|
export default function() {
|
|
return {
|
|
components,
|
|
wrapComponents,
|
|
statePlugins: {
|
|
spec: {
|
|
wrapSelectors
|
|
}
|
|
}
|
|
}
|
|
}
|