summaryrefslogtreecommitdiff
path: root/src/core/plugins/err/index.js
blob: 2ca5a39997efcc3a7344675090cf399a789009a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import makeReducers from "./reducers"
import * as actions from "./actions"
import * as selectors from "./selectors"

export default function(system) {
  return {
    statePlugins: {
      err: {
        reducers: makeReducers(system),
        actions,
        selectors
      }
    }
  }
}