React 와 Spring 연동
개발하는지호
axios 를 활용하여 spring 의 데이터를 가져와야 하는 과제가 있었다. axios는 fetch 함수와 다르게 json 파일로 바꿀 함수가 필요 없다. 자동으로 바꿔준다 !! 프론트(React) import React, { useEffect, useState } from 'react'; // useEffect를 import 해야 합니다. import DesktopCardDetail from '../components/card/detail/SelectDetail/DesktopCardDetail'; import MobileCardDetail from '../components/card/detail/SelectDetail/MobileCardDetail'; import CardList from '../co..