https://github.com/ibrsec/simple-lesson-reminder
https://github.com/ibrsec/simple-lesson-reminder
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ibrsec/simple-lesson-reminder
- Owner: ibrsec
- Created: 2024-03-26T10:54:32.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-06T10:27:37.000Z (almost 2 years ago)
- Last Synced: 2025-02-26T07:44:20.087Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://lesson-reminder-three.vercel.app
- Size: 1.57 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Lesson Reminder React Project
An awesome Lesson Reminder React Project
Explore the docs ยป
View Demo
ยท
Report Bug
ยท
Request Feature
๐ Table of Contents ๐
---
[](https://simple-lesson-reminder-kwuc.vercel.app/)
---
๐ฆ Used mock data for Lesson information
๐ฏ Used React environment, components, use state, use effect, context api hooks. sass, css modules
๐ช Screen Lessons and clear if you want to
```sh
# clone the project
git clone https://github.com/ibrsec/lesson-reminder.git
# enter the project directory
cd lesson-reminder
# install dependency
npm install || yarn install
# develop
npm run dev || yarn start
```
```diff
lesson-reminder (folder)
|
|---public (folder)
+ |---src (folder)
| |---img (folder)
| |
| |---scss (folder)
| | |---_reset.scss
| | โ---_variable.scss
| |
| |---helper (folder)
| | โ---data.jsx
| |
| |---components (folder)
| | |---contex (folder)
| | | โ---GlobalData.jsx
| | |
| | |---header (folder)
| | | |---Header.jsx
| | | โ---Header.module.scss
| | |
| | |---button (folder)
| | | |---Button.jsx
| | | โ---Button.module.scss
| | |
| | โ---content (folder)
| | |---Lesson.jsx
| | |---Lesson.module.css
| | |---Content.jsx
| | โ---Content.module.scss
| |
| |
| |---App.js
| |---Index.js
| โ---Index.scss
|
|----index.html
|----.gitignore
|----package.json
|----yarn-lock
โ----readme.md
```
---