yarn create react-app (folderName OR .)
├── public
│ └── index.html
├── src
│ ├── assets
│ │ └── myAvatar.png
│ ├── auth
| │ └── firebase.js
│ ├── components
│ │ ├── Footer.jsx
│ | ├── MovieCard.jsx
│ │ └── Navbar.jsx
│ ├── context
│ | ├── AuthContext.js
│ │ └── MovieContext.js
│ ├── helpers
│ │ └── ToastNotify.js
│ ├── pages
│ │ ├── About.jsx
│ │ ├── Contact.jsx
│ │ ├── HighScore.jsx
│ │ ├── Home.jsx
│ │ ├── Licensing.jsx
│ │ ├── Login.jsx
│ │ ├── LowScore.jsx
│ │ ├── MovieDetails.jsx
│ │ ├── NotFound.jsx
│ │ ├── Policy.jsx
│ │ ├── Register.jsx
│ │ └── Trends.jsx
│ ├── router
│ │ ├── AppRouter.jsx
│ │ └── PrivateRouter.jsx
│ ├── App.js
│ ├── index.js
│ └── index.css
├── package.json
├── .gitignore
└── yarn.lock