You'll:
- Understand what react is and be able to make interactive web apps with it.
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()} />
Do it like throwing Spaghetti at wall. Feel free to jump backwards, re-read, re-watch, play around until you get it.
- Do classes quickly primer.
- Do the Code School course.
- Read our homegrown React Primer.
- Do the tasks
- Build a Static Site
- Build a React Site With State