Created
October 28, 2018 16:13
-
-
Save dennisja/c1cf0a4e6bbbfc466525f1e3298f68ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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