PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / trunk
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses vtrunk
4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 4.2.1 All 138 releases
learnpress / assets / src / apps / js / admin / react / question / store / index.js

index.js in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses trunk, at assets/src/apps/js/admin/react/question/store/index.js

22 lines 452 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import {registerStore} from '@wordpress/data';
2
3 import reducer from './reducer';
4 import * as actions from './actions';
5 import * as selectors from './selectors';
6 import applyMiddlewares from './middlewares';
7
8 const {controls: dataControls} = LP.dataControls;
9
10 const store = registerStore('learnpress/question', {
11 reducer,
12 selectors,
13 actions,
14 controls: {
15 ...dataControls
16 }
17 });
18
19 applyMiddlewares(store);
20
21 export default store;
22