Skip to content

Instantly share code, notes, and snippets.

@dennisja
Created October 28, 2018 16:13
Show Gist options
  • Select an option

  • Save dennisja/c1cf0a4e6bbbfc466525f1e3298f68ae to your computer and use it in GitHub Desktop.

Select an option

Save dennisja/c1cf0a4e6bbbfc466525f1e3298f68ae to your computer and use it in GitHub Desktop.
const Todo = ({ title, completed }) => (
<div>
{title}
{completed && <span> Well Done</span>}
{/* We use short circuting to conditionally determine what to render*/}
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment