Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mesbol6647/blog-app
https://github.com/mesbol6647/blog-app
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/mesbol6647/blog-app
- Owner: mesbol6647
- Created: 2024-01-20T12:37:46.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-20T16:50:36.000Z (about 1 year ago)
- Last Synced: 2024-11-05T11:10:15.225Z (3 months ago)
- Language: JavaScript
- Size: 3.32 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
start blogg-app
Milestone Blog App (folder for context)
| # Given to the students (Definition of the project)
SOLUTION
├── src
│ ├── index.js+
│ ├── App.js+
│ ├── assets+
│ │ └── cw.png
│ ├── components+
│ │ ├── auth+
│ │ │ ├── Login.jsx+
│ │ │ └── Register.jsx+
│ │ ├── blog+
│ │ │ ├── BlogCard.jsx+
│ │ │ ├── BlogForm.jsx+
│ │ │ ├── CommentForm.jsx+
│ │ │ ├── DeleteModal.jsx+
│ │ │ └── UpdateModal.jsx+
│ │ ├── Footers.jsx+
│ │ └── NavBars.jsx+
│ ├── context
│ │ ├── AuthContext.jsx+
│ │ └── BlogContext.jsx+
│ ├── helper+
│ │ ├── ToastNotify.jsx+
│ │ └── menuList.js+
│ ├── pages+
│ │ ├── About.jsx+
│ │ ├── Auth.jsx+
│ │ ├── BlogDetail.jsx+
│ │ ├── Dashboard.jsx+
│ │ ├── MyBlog.jsx+
│ │ ├── NewBlog.jsx+
│ │ └── Profile.jsx+
│ ├── reducer+
│ │ ├── authReducer.js+
│ │ └── blogReducer.js+
│ ├── router+
│ │ ├── AppRouter.jsx+
│ │ └── PrivateRouter.jsx+
│ ├── service+
│ │ └── useAxios.jsx+
│ └── styles
│ └── globalStyles.jsx+