Skip to content

Instantly share code, notes, and snippets.

@supertinou
Created September 2, 2015 18:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save supertinou/9e6ed76626f926de7f2e to your computer and use it in GitHub Desktop.
Save supertinou/9e6ed76626f926de7f2e to your computer and use it in GitHub Desktop.
@SuccessNotifier = React.createClass
render: ->
[image, text] = if this.props.success
['/images/correct.png','Well done !']
else
['/images/wrong.png', 'Wrong answer !']
<div className="list-group-item">
<div className="row">
<div className="col-md-2">
<img className='media-object' src={image} />
</div>
<div className="col-md-9">
<h1>{text}</h1>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment