Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1.37 KB

README.md

File metadata and controls

42 lines (25 loc) · 1.37 KB

cover

View Demo ToDo React App

🦉 Main information

ToDo app is an app that allows users to add, edit, and delete tasks they want to work on. These actions touch upon the four aspects of a CRUD (Create, Read, Update, and Delete) application.

This application integrate React useState and useEffect Hooks. React Hooks allow for functional components to have a state and use lifecycle methods, allowing you to avoid using class components and have more modular and readable code.

ToDo app is an excellent app to practice hooks, state, style and data manipulation.

Here you can find the sourse code with all the necessary and useful comments.

Built With

React / JavaScript

⏲️ Run project

In the project directory, you can run:

npm start

Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.

The page will reload when you make changes.
You may also see any lint errors in the console.

⚡ Setup

This project was bootstrapped with Create React App.

The following technologies and components were used in this project:

Create React app

npx create-react-app my-app
cd my-app
npm start