actions.js
4 years ago
controls.js
5 years ago
index.js
5 years ago
reducer.js
2 years ago
resolvers.js
4 years ago
selectors.js
4 years ago
index.js
22 lines
| 1 | /** |
| 2 | * WordPress dependencies |
| 3 | */ |
| 4 | const { registerStore } = wp.data; |
| 5 | |
| 6 | /** |
| 7 | * Internal dependencies |
| 8 | */ |
| 9 | import reducer from "./reducer"; |
| 10 | import * as selectors from "./selectors"; |
| 11 | import * as actions from "./actions"; |
| 12 | import controls from "./controls"; |
| 13 | import resolvers from "./resolvers"; |
| 14 | |
| 15 | export default registerStore("presto-player/player", { |
| 16 | reducer, |
| 17 | selectors, |
| 18 | actions, |
| 19 | controls, |
| 20 | resolvers, |
| 21 | }); |
| 22 |