Use the API to Fetch Data
Learn how to use the API and fetch function to retrieve the data.
We'll cover the following...
We’ll use an API to fetch weather data from the OpenWeather website.
Note: Because we’re using an API in this section, you need to create a personal API key from the website. You need to add the generated API key value in the
api_key_weather_app
value slot.
Import the hooks
To store the weather data received from the API, we must import useState
to store the weather data’s current state. We’ll need to import the useEffect
hook as well so that our fetch can run whenever the dependencies change. The following snippet shows how to import the required hooks:
import {useState, useEffect} from the "react"
...