Skip to content

Instantly share code, notes, and snippets.

@sackeyjason
Last active June 17, 2020 10:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sackeyjason/b207a2a33defa5aed6394f38f0269e9a to your computer and use it in GitHub Desktop.
Save sackeyjason/b207a2a33defa5aed6394f38f0269e9a to your computer and use it in GitHub Desktop.
Conditional props
<Component
aria-selected={highlight ? true : undefined}
/>
<Component
{...(highlight ? { "aria-selected": true } : {})}
/>
/* These are not the same ;_; */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment