Build a Task Tracker App using ReactJS.
-
Project aims to create a Task Tracker App.
-
In this project i tried to make a build simple task tracker app. User can add new task to tracker list with date and time. And remove them from list after finish the task.
You can reach my project from here 👉 Task Tracker
-
HTML
-
CSS
-
JS
-
ReactJS
-
Reactstrap
task-tracker-react (folder)
|
|----readme.md
SOLUTION
├── public
│ └── index.html
├── src
│ ├── components
│ │ ├── Header.js
│ │ │ └── Button.js
│ │ │
│ │ ├── AddTask.js
│ │ │
│ │ │
│ │ └── Tasks.js
│ │ └── Task.js
│ │
│ ├── App.js
│ ├── App.css
│ ├── index.js
│ └── index.css
├── package.json
└── yarn.lock
To run this project, install it locally using npm or yarn:
$ git clone https://github.com/esadakman/reactjs-task-tracker.git
$ cd ../task-tracker-react
$ npm install / yarn
$ npm start / yarn start
