Shubham
Hello readers! This is the first time I am writing an article on building something with React. So, I am also new to React and Frontend Frameworks. And the best way to make your first React project would be to make a simple Todo App.
Building a Todo App is easy and does not take much time, but it teaches you some important concepts. It teaches you the principle of CRUD (Create, Read, Update and Delete), which is very important to understand for any developer
Since this is our first project in the React world, we would keep things simple. We won’t be using Redux for state management, and we would not use any server to manage it.
Building a simple Todo list means we won’t be able to keep track of the todos once we refresh the page. So, it is not a perfect solution but a good start.
We will learn to build an advanced Todo App, which would involve Redux and a server but for now, we would like to keep things simple. We would build a simple working React app with some styling.