From the console, run:
npm install
npm start
in a different console window, run
npm run api
Create an application that shows weather and wind data for a chosen city:
- When the user opens the website, load a list of cities using the fetchCities function from api.ts
- When the cities are done loading, display them on the page
- When the user selects a city, load the weather data using the fetchWeather function from api.ts
- When the weather data is done loading, show the weather description and wind information
Notes:
Feel free to ask any questions
Don't worry about CSS
Don't worry about typescript, you can use any
if any errors come up
It's okay to use google