ApolloServer, firebase (복습 18일차)
오픈API 실습 import axios from "axios"; import { useEffect, useState } from "react"; import OpenapiListUI from "./OpenapiList.presenter"; export default function OpenapiList() { const [imgUrls, setImgUrls] = useState([]); useEffect(() => { const getImg = async () => { // [1, 1, 1, 1, 1, 1, 1, 1, 1] new Array(9).fill(1).map(async (_) => { const result: any = await axios.get( "https://dog.ceo/api/bree..
2022. 4. 26.