I've just completed a beginner video on React by SuperSimpleDev, and I'm eager to dive deeper into the framework. Can anyone recommend some learning materials or a structured roadmap to improve my skills?
3 Answers
Starting off with the one-shot video is a great approach! From here, I'd suggest the best way to solidify your React knowledge is by building some small projects. Consider creating a to-do list app, a weather app, or a simple dashboard. As you get comfortable with the basics, you can explore these topics sequentially:
- **React Hooks:** Start with `useState` and `useEffect`.
- **Component Structure:** Learn about organizing your components.
- **Routing:** Utilize React Router for navigation.
- **State Management:** Check out the Context API or Redux as you advance.
- **API Calls:** Get familiar with fetching data.
And remember, consistently building projects alongside your learning will help reinforce your understanding!
If you're looking for a structured course, I highly recommend Akshay Saini's React course. He's detailed and covers a lot of ground that will be super useful as you go deeper into the framework.
You shouldn't stress too much about having a strict roadmap. Just focus on applying what you learn from SuperSimpleDev by crafting your own projects. It's the best way to learn! (And no worries about your English—you're doing great!)

Thanks for the advice! I’ll try to start with a to-do app this weekend.