https://github.com/ibrsec/tutorialapp-react
https://github.com/ibrsec/tutorialapp-react
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ibrsec/tutorialapp-react
- Owner: ibrsec
- Created: 2024-04-05T09:48:08.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-04T11:25:32.000Z (almost 2 years ago)
- Last Synced: 2025-11-19T23:22:24.478Z (7 months ago)
- Language: JavaScript
- Homepage: https://tutorialapp-react.vercel.app
- Size: 285 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Tutorials App
An awesome Tutorials App
Explore the docs ยป
View Demo
ยท
Report Bug
ยท
Request Feature
๐ Table of Contents ๐
---
[](https://tutorialapp-react.vercel.app/)
---
๐ฏ Used React environment
๐ฅ User can add tutorials
๐ฉ Tutorials can be edited or deleted
```sh
# clone the project
git clone https://github.com/ibrsec/tutorialapp-react.git
# enter the project directory
cd tutorialapp-react
# install dependency
npm install || yarn install
# develop
npm run dev || yarn start
```
```diff
tutorialapp-react (folder)
|
|---public (folder)
|
+ |---src (folder)
| |---img (folder)
| |
| |---pages (folder)
| | โ---Home.jsx
| |
| |---components (folder)
| |
| |
| |---App.js
| |---App.css
| |---Index.js
| โ---Index.css
|
|----package.json
|----yarn.lock
โ----readme.md
```
---