JSFiddle - React, Tailwind, and code Playground

by ruhul105

JavaScript

handleStatus = (book, shelf) => {
    if (book.shelf !== shelf) {
      BooksAPI.update(book, shelf).then(() => {
        book.shelf = shelf

        // Filter out the book and append it to the end of the list
        // so it appears at the end of whatever shelf it was added to.
        ..
        
      })
    }
  }