React todo app review

Hello,

I made a simple todo app using React (and a bunch of other tools)…
You can see it live on heroku.
Also the github repo is here.

You are welcome to fork it and many any changes or fix any errors that might occur :slight_smile:.
For some reasons (I don’t know why) you need to check the show completed checkbox 2 times for it to work… Maybe someone can spot the error and fix it (please let me know if you do :smile: )

Feedback is welcomed. Even constructive criticism :smiley:

Thank you!

Looks good to me. The check show completed checkbox works as expected on the first click.

One thing I noticed in your code (TodoAPI.jsx file) is you’re including jQuery and then only using it for $.isArray check. You can also use the native ES6’s Array.isArray.

1 Like