Files
swagger-ui/src/core/plugins/oas3/index.js
2017-05-23 19:39:54 -07:00

22 lines
401 B
JavaScript

// import reducers from "./reducers"
// import * as actions from "./actions"
import * as wrapSelectors from "./wrap-selectors"
import wrapComponents from "./wrap-components"
export default function() {
return {
components: {
},
wrapComponents,
statePlugins: {
spec: {
// wrapActions,
// reducers,
// actions,
wrapSelectors
}
}
}
}