Going through react tutorial, how do you do it?

so currently I am on the following page, I just realised if I should practice on codepen etc or just keep on reading etc?

How do you do it?

you can do whichever works best for you

Hi @mahassan

If practice on CodePen you’ll develop muscle memory when can help you retain information about syntax.

React is very unforgiving when a single syntax error is made. The whole app stops working. So it is a good idea to add console logs when you code, then comment them out so you can reuse them later when you make changes.

I built a simple React boilerplate. Whenever I start a new project, I start from the boilerplate which includes a handleChange function and a state object.

Happy coding