PluginProbe
Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution / 1.9.0
Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution v1.9.0
2.0.1 trunk 1.0.0 1.1.0 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.5.0 1.6.0 1.6.1 1.7.0 1.7.1 1.8.0 1.9.0 2.0.0
solid-performance / src / Performance / Admin / package / preload / store / index.js

index.js in Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution 1.9.0, at src/Performance/Admin/package/preload/store/index.js

24 lines 457 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * WordPress dependencies
3 */
4 import { createReduxStore, register } from '@wordpress/data';
5
6 /**
7 * Internal dependencies
8 */
9 import reducer from './reducer';
10 import * as actions from './actions';
11 import * as selectors from './selectors';
12 import * as resolvers from './resolvers';
13
14 const STORE_NAME = 'solid-performance/preload';
15
16 export const store = createReduxStore( STORE_NAME, {
17 reducer,
18 actions,
19 selectors,
20 resolvers,
21 } );
22
23 register( store );
24