UNPKG

@wordpress/preferences

Version:
17 lines (16 loc) 412 B
// packages/preferences/src/store/index.ts import { createReduxStore, register } from "@wordpress/data"; import reducer from "./reducer"; import * as actions from "./actions"; import * as selectors from "./selectors"; import { STORE_NAME } from "./constants"; var store = createReduxStore(STORE_NAME, { reducer, actions, selectors }); register(store); export { store }; //# sourceMappingURL=index.js.map