https://github.com/ibrsec/appointment-lifting-stateup
https://github.com/ibrsec/appointment-lifting-stateup
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/ibrsec/appointment-lifting-stateup
- Owner: ibrsec
- Created: 2024-03-29T12:22:31.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-01T13:02:52.000Z (about 2 years ago)
- Last Synced: 2025-01-08T21:36:44.161Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://appointment-lifting-stateup.vercel.app
- Size: 5.76 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Employee List Project
An awesome Employee List Project
Explore the docs ยป
View Demo
ยท
Report Bug
ยท
Request Feature
๐ Table of Contents ๐
---
[](https://appointment-lifting-stateup.vercel.app/)
---
๐ฆ Used mock doctors data from data.jsx file
๐ฏ Used React environment, components, use state, use effect hooks, uplifting state
๐ฅ Make appointment for doctors with selecting patient name and appointment date
๐ฉ List, delete and sign as consulted the appointments
```sh
# clone the project
git clone https://github.com/ibrsec/appointment-lifting-stateup.git
# enter the project directory
cd appointment-lifting-stateup
# install dependency
npm install || yarn install
# develop
npm run dev || yarn start
```
```diff
appointment-lifting-stateup (folder)
|
|---public (folder)
+ |---src (folder)
| |---img (folder)
| |
| |
| |---helper (folder)
| | โ---data.jsx
| |
| |---components (folder)
| | |
| | |---header (folder)
| | | |---Header.jsx
| | | โ---Header.css
| | |
| | |---card (folder)
| | | |---Card.jsx
| | | โ---Card.css
| | |
| | |---content (folder)
| | | |---Content.jsx
| | | โ---Content.css
| | |
| | โ---appointments (folder)
| | |---Appointments.jsx
| | โ---Appointments.css
| |
| |
| |
| |---App.js
| |---App.scss
| |---Index.js
| โ---Index.scss
|
|----index.html
|----package.json
|----yarn.lock
โ----readme.md
```
---