9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
|
function deleteNote(noteId) {
|
||
|
fetch("/delete-note", {
|
||
|
method: "POST",
|
||
|
body: JSON.stringify({ noteId: noteId }),
|
||
|
}).then((_res) => {
|
||
|
window.location.href = "/";
|
||
|
});
|
||
|
}
|