lib/api/posts.js를 열어서 updatePost 함수를 작성하세요.
lib/api/posts.js
(...) export const updatePost = ({ id, title, body, tags }) => client.patch(`/api/posts/${id}`, { title, body, tags, });
lib/api/posts.js를 열어서 updatePost 함수를 작성하세요.
lib/api/posts.js
(...) export const updatePost = ({ id, title, body, tags }) => client.patch(`/api/posts/${id}`, { title, body, tags, });