https://github.com/ibrsec/todo-react
https://github.com/ibrsec/todo-react
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ibrsec/todo-react
- Owner: ibrsec
- Created: 2024-04-03T07:10:50.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-03T08:49:06.000Z (about 2 years ago)
- Last Synced: 2025-02-26T07:44:28.470Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://todo-react-sigma-sepia.vercel.app
- Size: 622 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Todo React App
An awesome Todo React App
Explore the docs ยป
View Demo
ยท
Report Bug
ยท
Request Feature
๐ Table of Contents ๐
---
[](https://todo-react-sigma-sepia.vercel.app/)
---
๐ฏ Used React environment, components, use state, use effect hooks, uplifting state
๐ฅ Add tasks
๐ฉ Check tasks as done by double clicking
๐ช Remove tasks
```sh
# clone the project
git clone https://github.com/ibrsec/todo-react.git
# enter the project directory
cd todo-react
# install dependency
npm install || yarn install
# develop
npm run dev || yarn start
```
```diff
todo-react (folder)
|
|---public (folder)
+ |---src (folder)
| |---img (folder)
| |
| |---pages (folder)
| | โ---Home.jsx
| |
| |---components (folder)
| | |
| | |---Header.jsx
| | |---Input.jsx
| | |---Task.jsx
| | โ---TaskContainer.jsx
| |
| |---App.js
| |---App.scss
| |---Index.js
| โ---Index.scss
|
|----index.html
|----package.json
|----yarn.lock
โ----readme.md
```
---