Skip to content

Instantly share code, notes, and snippets.

@harrybanda
Created September 22, 2021 12:55
Show Gist options
  • Save harrybanda/5a271aceb4ea2ff6f1bca43bea75354e to your computer and use it in GitHub Desktop.
Save harrybanda/5a271aceb4ea2ff6f1bca43bea75354e to your computer and use it in GitHub Desktop.
<Button
appearance="danger"
icon="trash"
onClick={async () => {
await storage.delete(book.key);
await storage
.query()
.where("key", startsWith("book_"))
.getMany()
.then((res) => setBooks(res.results));
}}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment