- 実装したAPI処理関数を呼び出してみる
- コンソールに出ていればOK
例
import { NextPage } from "next";
const IndexPage: NextPage = () => {
return <div>猫画像予定地</div>;
};
export default IndexPage;
const fetchImage = async () => {
const res = await fetch("https://api.thecatapi.com/v1/images/search");
const images = await res.json();
console.log(images);
return images[0];
};
fetchImage(); // テストで呼び出してみる