Skip to content

Instantly share code, notes, and snippets.

@dioxmio
Last active October 23, 2022 16:43
Show Gist options
  • Save dioxmio/fee7f4d59b9bf9112d4a75fc3fcb43d3 to your computer and use it in GitHub Desktop.
Save dioxmio/fee7f4d59b9bf9112d4a75fc3fcb43d3 to your computer and use it in GitHub Desktop.
async function Note({id, isEditing}) {
const note = await db.posts.get(id);
return (
<div>
<h1>{note.title}</h1>
<section>{note.body}</section>
{isEditing ? <NoteEditor note={note} /> : null}
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment