Files

10 lines
189 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
Retrieve data from store by using `getState()` method.
```react.js
let currentState = store.getState();
```