uanders / react-redux-cheatsheet

React Redux Cheat Sheet on Workflow & Concept

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Article comments: App and Components

sompylasar opened this issue · comments

The higher order component then returns a new instance of the smart component that is now connected.

I'd rephrase as:

The higher order component created by the connect() function renders the smart component passing the data from the store into its props.

makeSomeCalculations = () => {

I'd rename to handleSomeEvent as that would be an example of a function that most commonly requires binding because it is passed to child components rather than called from this component.

  1. Typo: manageSomeDate -> manageSomeData

@sompylasar Edited according to your suggestions. Thanks.