In pure React I can pass props to child component and it re-renders. I would like to have the same functionality in Redux as well.
I want to have a component that is connected to Redux store and whenever the store updates (ideally select elements in store), the component is re-rendered (thus not directly dispatching an action). How can I achieve this in Redux?
Thanks