클라이언트에서 서버로 보내는건 완료됐습니다
근데 서버에서 클라이언트로 데이터가 안옵니다ㅠㅠ
const [data, setData] = useState([]);
useEffect(() => {
axios.get('http://localhost:4000/Board')
.then((response) => {
//setData(response.data);
console.log(response.data);
})
.catch((error) => {
console.error('데이터 가져오기 중 오류 발생:', error);
});
}, []);
이렇게 했는데도
콘솔에 아무것도 출력이 안됩니다ㅠㅠㅠ