Introduction
React is one of the popular JavaScript frameworks available in the community. React is very powerful, and you can develop a variety of web- apps using react. So today, I am going to list 5 projects that you can make using the react framework.
1. COVID-19 Info App
You can create a webpage displaying current information and stats of COVID-19. We can use an API to fetch data about COVID-19. You can show that information on the page as you want. You can API from disease.sh to fetch the data.
What will you learn?
- API Management
- Props
- State Management
- Flexbox For Containers
2. Weather App
We can create our own weather to know the weather. We can have an input box to search for different cities too. You can create an input box to get the city's name and display the weather information on the web page. OpenWeather is one of my favorite API providing weather information. API comes with icon code. You can use this code to display an icon according to the weather.
What will you learn?
- API Management
- Props
- State Management
- Reusable Component
3. Recipe App
Yes, a recipe app to help you and others who want to cook tasty food. In this app, we can display a recipe for food according to searched input. We can also display some featured recipes too. Edamam provides an API for recipe apps. It is one of the best available recipe API.
What will you learn?
- API Management
- Props
- State Management
- Reusable Component
4. Calculator App
You can develop a basic to the more advanced scientific calculator using react. Designing a calculator can help you to understand the language. It will also test your mathematics knowledge too. But it's quite fun to design a calculator and give features according to your need.
What will you learn?
- Props
- State Management
- Reusable Component
5. Todo App
You can make a todo app with an input box to add a new todo item to the list. You can have an input box for entering a new task in the todo-app. You can have a database to store that information. You can use firebase to store data and get a real-time update. You can have the animation for the completed and uncompleted task. We can also give points to the user according to the task completed.
What will you learn?
- Firebase Database Management
- Props
- State Management
- Reusable Component
- Realtime Database Update