Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
www
/
wp-content
/
plugins
/
astra-sites
/
inc
/
lib
/
ai-builder
/
inc
/
assets
/
src
/
store
/
Editing: index.js
import { createReduxStore, register } from '@wordpress/data'; import reducer from './reducer'; import selectors from './selectors'; import actions from './actions'; export const STORE_KEY = 'st-ai-builder'; const store = createReduxStore( STORE_KEY, { reducer, actions, selectors, } ); register( store );
Save
Cancel