Created
June 29, 2019 19:24
-
-
Save jsmanifest/b1adf5e5d7bcd579ca25072f0767ee9b 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
return ( | |
<div> | |
<h4>Where is the money?</h4> | |
<hr /> | |
<div style={{ display: 'flex', alignItems: 'center' }}> | |
<SomeCustomButton | |
type="button" | |
onClick={sayWhereTheMoneyIs.bind(null, "I don't know")} | |
> | |
I'll tell you | |
</SomeCustomButton>{' '} | |
<SomeCustomButton | |
type="button" | |
onClick={showThemTheMoney.bind(null, 0.05)} | |
> | |
I'll show you | |
</SomeCustomButton> | |
</div> | |
</div> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment