Skip to content

Instantly share code, notes, and snippets.

@smeijer
Last active August 2, 2019 17:28
Show Gist options
  • Save smeijer/74bffb760568730390d76acd40567802 to your computer and use it in GitHub Desktop.
Save smeijer/74bffb760568730390d76acd40567802 to your computer and use it in GitHub Desktop.
medium-costs-of-optional-chaining-2
function CommentButtons({ user }) {
return (
<div>
<Button disabled={user?.can?.edit}>edit</Button>
<Button disabled={user?.can?.delete}>delete</Button>
<Button disabled={user?.can?.reply}>reply</Button>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment