Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
How to access redux store outside a react component?
Home
Redux
How to access redux store outside a react component?
+1
vote
asked
Jun 25, 2021
in
Redux
by
SakshiSharma
How to access redux store outside a react component?
access-redux
react-component
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 25, 2021
by
SakshiSharma
You can export the store from the module you called createStore.
//Store.js
const store = createStore(Reducer);
export default store;
//Client.js
import store from './Store'
store.dispatch(action);
...