Starting React

I just started my first local React app. Wish me luck.

Using: The Road to Learn React

This book goes over a lot of ES6 stuff, which is good, as I need practice with those, and it also introduced another fun tool:

Hot Module Reloading

This appears to be part of Webpack, which is included in create-react-app. Add if (module.hot) module.hot.accept(); to index.js and you don’t have to refresh every time you make a little change. Nice.