Para los que no usan Axiox (como yo), les dejo la form para hacerlo con fetch
const data = await fetch("https://jsonplaceholder.typicode.com/todos",
{
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(newTask)
}
).then(response => response.json())
Los aportes, preguntas y respuestas son vitales para aprender en comunidad. Regístrate o inicia sesión para participar.