#21 데이터 Flow & Axios
[인프런] 따라하며 배우는 노드, 리액트 시리즈 - 기본강의를 들으며 정리한 내용입니다. 1. axious 다운받기 cd client npm install axios --save 2. LandingPage.js 파일에 axios 구문을 추가해준다. import React, { useEffect } from "react"; import axios from "axios"; export default function LandingPage() { useEffect(() => { axios.get("/api/hello").then((response) => console.log(response.data)); }, []); return LandingPage; } 3. server/index.js 파일에 아래 구문 추..
2022.08.04