freeCodeCamp/guide/english/certifications/front-end-libraries/redux/get-state-from-the-redux-store/index.md

10 lines
189 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Get State from the Redux Store
---
## Get State from the Redux Store
Retrieve data from store by using `getState()` method.
```react.js
let currentState = store.getState();
```