A hook to access the redux store.
the redux store
import React from 'react'import { useStore } from 'react-redux'export const ExampleComponent = () => { const store = useStore() return <div>{store.getState()}</div>} Copy
import React from 'react'import { useStore } from 'react-redux'export const ExampleComponent = () => { const store = useStore() return <div>{store.getState()}</div>}
A hook to access the redux store.