How to fetch data from an api axios code example
Example: How to fetch data from an api axios
import axios from "axios"
const fetchData = () => {
return axios.get("https://randomuser.me/api/")
.then((response) => console.log(response.data));}