mirror of
https://github.com/WenPai-org/wpmind.git
synced 2025-08-05 21:05:13 +08:00
18 lines
297 B
JavaScript
18 lines
297 B
JavaScript
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import reducer from './reducer';
|
||
|
import * as selectors from './selectors';
|
||
|
import * as actions from './actions';
|
||
|
|
||
|
/**
|
||
|
* WordPress dependencies
|
||
|
*/
|
||
|
import { registerStore } from '@wordpress/data';
|
||
|
|
||
|
registerStore('mind/popup', {
|
||
|
reducer,
|
||
|
selectors,
|
||
|
actions,
|
||
|
});
|