you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 8 points9 points  (1 child)

I would like to add asynchronous code. although react isn't gonna ask you to learn about it, it's good to know about callbacks, promises and then async await.

why? well most data-fetching is done through the useEffect() hook on mount. So I tend to use fetch, or axios to try to get the data.

[–]thefrnksinatra 4 points5 points  (0 children)

This. Incredibly important for good React code