WONILLISM / react-masterclass

React Master Class(feat. Nomad Coders)
0 stars 0 forks source link

4.5 Coin Data #18

Open WONILLISM opened 2 years ago

WONILLISM commented 2 years ago

상세 화면 설정

WONILLISM commented 2 years ago
const response = await fetch(
  `https://api.coinpaprika.com/v1/coins/${coinId}`
);
const json = await response.json();

한 번에 처리하기

const infoData = await (
        await fetch(`https://api.coinpaprika.com/v1/coins/${coinId}`)
      ).json();