Files
swagger-ui/src/core/plugins/layout/index.js
2021-03-10 15:14:41 -08:00

20 lines
371 B
JavaScript

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
}
}
}
}