https://github.com/marcraphael12/reat_todo_app
An exercice to consolidate my knowledge about React, components, props, state, and hooks, by following a tutorial.
https://github.com/marcraphael12/reat_todo_app
Last synced: 8 months ago
JSON representation
An exercice to consolidate my knowledge about React, components, props, state, and hooks, by following a tutorial.
- Host: GitHub
- URL: https://github.com/marcraphael12/reat_todo_app
- Owner: Marcraphael12
- Created: 2023-01-16T08:24:39.000Z (over 3 years ago)
- Default Branch: dev
- Last Pushed: 2023-01-18T03:24:15.000Z (over 3 years ago)
- Last Synced: 2025-06-11T12:49:14.646Z (about 1 year ago)
- Language: JavaScript
- Size: 779 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## [Click to See the Todos App](https://ibaslogic.github.io/react-todo-project/)
The code is available in the `src` folder. In there, you’ll see two folders named `classBased` and `functionBased` holding the class component and function component code respectively.
### Clone the project
You can download or clone this project by running this command from your terminal:
```
git clone https://github.com/Ibaslogic/react-todo-app
```
This will create a directory in the name of the project folder.
Once you have the project files and folders bootstrapped, open it with your text editor.
Next, switch inside the project directory and run:
```
npm install
```
This will install all the necessary dependencies in the local `node_modules` folder.
Finally, start your development server by running:
```
npm start
```
You should see the app in your browser address bar at [http://localhost:3000](http://localhost:3000)