wpmind/src/admin/store/settings/index.js

20 lines
348 B
JavaScript
Raw Normal View History

/**
* Internal dependencies
*/
import reducer from './reducer';
import * as actions from './actions';
import * as selectors from './selectors';
/**
* WordPress dependencies
*/
2023-06-02 23:10:17 +03:00
import { createReduxStore, register } from '@wordpress/data';
const store = createReduxStore('mind/settings', {
reducer,
actions,
selectors,
});
2023-06-02 23:10:17 +03:00
register(store);