Files

21 lines
303 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Get State from the Redux Store
---
# Get State from the Redux Store
---
## Problem Explanation
2018-10-12 15:37:13 -04:00
Retrieve data from store by using `getState()` method.
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
```jsx
2018-10-12 15:37:13 -04:00
let currentState = store.getState();
```
</details>