put은 기존의 것을 찾아서 아예 정보를 갈아끼워버린다.
patch는 기존의 것을 찾아서 일부만 수정해준다
Url 다음에는 뭘 수정할지 명시해주는 게 중요함
Delete도 !! 뭘 삭제할지 명시해주는게 중요!
꼭 파라미터 명시해줘야함
import commentsAxios from "./axios/comments";
import "./App.css";
import axios from "axios";
function App() {
const handleGetCommentsButtonClick = async () => {
//
commentsAxios.get("/1").then((response) => {
}
}
const handleGetPostsButtonClick = () => {
//
}
const handleGetProfileButtonClick = () => {
//
}
return <div className="App">
<button onClick={handleGetCommentsButtonClick}>GET COMMENTS</button>
<button onClick={handleGetPostsButtonClick}>GET POSTS</button>
<button onClick={handleGetProfileButtonClick}>GET PROFILE</button>
</div>;
}
export default App;