Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.1 KB

File metadata and controls

31 lines (21 loc) · 1.1 KB

React

Outcome

You'll:

  • Understand what react is and be able to make interactive web apps with it.

Advice

We don't use much state in our applications. (We use a library called Redux instead in a lot of cases).

Don't use bind like he does. You can use a lambda instead.

<MyComponent myProp={this.myFunc} /> won't work because this will be the wrong this (crapness of JS). But this works: <MyComponent myProp={() => this.myFunc()} />

Core

Tasks

Do it like throwing Spaghetti at wall. Feel free to jump backwards, re-read, re-watch, play around until you get it.