NS
Size: a a a
NS
AE
AE
IS
NS
async function CreateNewWishlist(csrftoken, title) {
var response = await fetch('/wishlists', {
method: 'POST',
body: JSON.stringify({
wishlist_title: title,
}),
headers: {"X-CSRFToken": csrftoken},
})
return response.json()
}
IS
IS
AE
async function CreateNewWishlist(csrftoken, title) {
var response = await fetch('/wishlists', {
method: 'POST',
body: JSON.stringify({
wishlist_title: title,
}),
headers: {"X-CSRFToken": csrftoken},
})
return response.json()
}
IS
NS
AE
IS
IS
IS
AE
IS
А
IS
IS
AE