summaryrefslogtreecommitdiff
path: root/src/core/plugins/layout/index.js
blob: 51dd9117e16da92ade97e53eb21ca24dbc22e7e6 (plain)
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
      }
    }
  }
}