InterviewSolution
Saved Bookmarks
| 1. |
How can we access a redux store outside a react component? |
|
Answer» For accessing a redux STORE outside a REACT COMPONENT, we can export the store from the module where it has been CREATED with createStore as done in the following EXAMPLE: store = createStore(reducer);export default store; |
|