wpmind/src/admin/store/settings/index.js
Nikita f1c3c698dc added Welcome page
changed settings API and page to React + rest
changed structure of scripts - different folders for editor and admin scripts
2023-08-05 16:01:44 +03:00

19 lines
348 B
JavaScript

/**
* Internal dependencies
*/
import reducer from './reducer';
import * as actions from './actions';
import * as selectors from './selectors';
/**
* WordPress dependencies
*/
import { createReduxStore, register } from '@wordpress/data';
const store = createReduxStore('mind/settings', {
reducer,
actions,
selectors,
});
register(store);