Skip to content

Instantly share code, notes, and snippets.

View kanishkamakhija's full-sized avatar

Kanishka Makhija kanishkamakhija

  • Banglore
View GitHub Profile
export const update = (book, shelf) =>
fetch(`${api}/books/${book.id}`, {
method: 'PUT',
headers: {
...headers,
'Content-Type': 'application/json'
},
body: JSON.stringify({ shelf })
}).then(res => res.json())