mirror of
https://github.com/WenPai-org/wpmind.git
synced 2025-08-07 06:13:07 +08:00
added a lot of enhancements to popup, dropdown in toolbar and in API requests
This commit is contained in:
parent
1cac92d58f
commit
ce3c6c3184
53 changed files with 1784 additions and 297 deletions
19
src/store/popup/index.js
Normal file
19
src/store/popup/index.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* 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/popup', {
|
||||
reducer,
|
||||
actions,
|
||||
selectors,
|
||||
});
|
||||
|
||||
register(store);
|
Loading…
Add table
Add a link
Reference in a new issue