UNPKG

@wordpress/notices

Version:
24 lines (22 loc) 544 B
/** * WordPress dependencies */ import { createReduxStore, register } from '@wordpress/data'; /** * Internal dependencies */ import reducer from './reducer'; import * as actions from './actions'; import * as selectors from './selectors'; /** * Store definition for the notices namespace. * * @see https://github.com/WordPress/gutenberg/blob/HEAD/packages/data/README.md#createReduxStore */ export const store = createReduxStore('core/notices', { reducer, actions, selectors }); register(store); //# sourceMappingURL=index.js.map