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.

Example

store = createStore(myReducer);
export default store;



Discussion

No Comment Found