useEffect를 사용하여 컴포넌트 Mount 시점에 API 호출
무료로 API테스트 할 수 있는 사이트 : https://jsonplaceholder.typicode.com/
const getData = async () => { const res = await fetch( "URL 주소" ).then((res) => res.json());\ console.log(res); }
promise를 반환하는 비동기함수