Skip to content

anthonyharold67/recipe-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Recipe App

Description

Project aims to create a Recipe App.

Project Skeleton

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

Recipe App

Objective

Build a Recipe App using ReactJS.
Recipe App