Created
February 1, 2021 23:13
-
-
Save caelinsutch/ba6e628ab21b2548ee1cbd9956f4ae8a to your computer and use it in GitHub Desktop.
Counter
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
// Short circuit operator | |
const Counter = ({count}) => { | |
return <div> | |
{count && <h1>Count: {count}</h1>} | |
</div> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment