InterviewSolution
Saved Bookmarks
| 1. |
How to access redux stores outside a react component? |
|
Answer» To access the REDUX stores outside a react COMPONENT, you need to export the store from the MODULE where it has been created with createStore. NOTE: If you are looking for React Native INTERVIEW Questions then you can visit here. Examplestore = createStore(myReducer); |
|