DELETE 요청delete 명령은 아래와 같이 하면 된다.const BASE_URL = "http://localhost:4000";const onDeleteHandler = async (id) => { await axios .delete(BASE_URL + `/todos/${id}`) .then(({ data }) => setTodos(todos.filter((todo) => todo.id !== data.id)));};좀 더 json-server에서 제공해주는 Routes와 비교하기 쉽게 base url을 분리해놓았다. {todos?.map((el) => { return ( {el.title} onDeleteH..