Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created June 29, 2019 19:24
Show Gist options
  • Save jsmanifest/b1adf5e5d7bcd579ca25072f0767ee9b to your computer and use it in GitHub Desktop.
Save jsmanifest/b1adf5e5d7bcd579ca25072f0767ee9b to your computer and use it in GitHub Desktop.
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