|
1
|
import reducer from './reducer'; |
|
2
|
import actions from './actions'; |
|
3
|
import selectors from './selectors'; |
|
4
|
|
|
5
|
const { createReduxStore } = wp.data; |
|
6
|
|
|
7
|
export default createReduxStore( 'jet-forms/actions', { |
|
8
|
reducer, |
|
9
|
actions, |
|
10
|
selectors, |
|
11
|
} ); |
|
12
|
|