Skip to content

Instantly share code, notes, and snippets.

@rrmdn
Created January 7, 2021 10:57
Show Gist options
  • Select an option

  • Save rrmdn/aaa6ff57bb5fa7229b2e1144ff215ea9 to your computer and use it in GitHub Desktop.

Select an option

Save rrmdn/aaa6ff57bb5fa7229b2e1144ff215ea9 to your computer and use it in GitHub Desktop.
<input
onChange
class="toggle"
type="checkbox"
checked={item.done}
onChange={async (e) => {
await updateRow(item.id, {
done: e.currentTarget.checked,
});
items.revalidate();
}}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment