Created
September 2, 2015 18:00
-
-
Save supertinou/9e6ed76626f926de7f2e to your computer and use it in GitHub Desktop.
This file contains 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
@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