- project set up using
Create React App
and usingReact Hooks API
(useState, useEffect) - fetch data from OpenWeather API with
API key
- modular components styled with
Bootstrap 5
and customcss
src
├── App.js
├── components
│ ├── CityForm.js
│ └── Weather
│ ├── index.js
│ ├── Description.js
│ ├── Humidity.js
│ ├── Humidity.css
│ ├── Icon.js
│ └── Temperature.js
├── index.js
├── serviceWorker.js
└── setupTests.js
% yarn install
% yarn start