Recipe App
Project aims to create a Recipe App.
007 - Recipe App (folder)
|
|----readme.md # Given to the students (Definition of the project)
├── public
│ └── index.html
├── src
│ ├── components
│ │ ├── header
│ │ │ ├── Header.jsx
│ │ │ ├── Form.jsx
│ │ │ └── HeaderStyles.jsx
│ │ └── navbar
│ │ | ├── Navbar.jsx
│ │ | └── NavbarStyles.jsx
| | └── footer
| | ├── Footer.jsx
| | └── Footer.css
│ ├── pages
│ │ ├── about
│ │ │ ├── About.jsx
│ │ │ └── AboutStyles.jsx
│ │ ├── details
│ │ │ ├── Details.jsx
│ │ │ └── DetailsStyles.jsx
│ │ ├── login
│ │ │ ├── Login.jsx
│ │ │ └── LoginStyles.jsx
│ │ └── home
│ │ ├── Home.jsx
│ │ ├── RecipeCardComp.jsx
│ │ └── HomeStyles.jsx
│ ├── router
│ │ ├── AppRouter.jsx
│ │ └── PrivateRouter.jsx
│ ├── assets
│ │ └── [images]
│ ├── App.js
│ ├── App.css
│ ├── index.js
│ └── index.css
├── package.json
└── yarn.lock
Build a Recipe App using ReactJS.
Recipe App