Api sobre curiosidades de gatos.
git clone https://github.com/benetesla/whiskerwonderlands.gi
npm install whiskerwonderlands
npm start
import React, { useState, useEffect } from 'react'
const ApiUrl = 'https://catfact.ninja/fact'
const fetctData = async () => {
const response = await fetch(ApiUrl)
const data = await response.json()
setCat(data)
setLoading(false)
}
fetctData()
}