--- title: Get State from the Redux Store --- ## Get State from the Redux Store Retrieve data from store by using `getState()` method. ```jsx let currentState = store.getState(); ```