I\'ve been following the ReduxJS documentation here: Usage with React
At the end of the document it mentions usage of the provider object, I have wrapped my App com
Thanks for the answer, but it is missing one crucial bit, which is actually in the documentation.
If contextTypes is not defined, then context will be an empty object.
So I had to add the following for it to work for me:
static contextTypes = { store: PropTypes.object.isRequired }