Skip to content

Instantly share code, notes, and snippets.

@kaw2k
Created March 25, 2014 18:23
Show Gist options
  • Save kaw2k/9767995 to your computer and use it in GitHub Desktop.
Save kaw2k/9767995 to your computer and use it in GitHub Desktop.
var IfElse = React.createClass({
render: function() {
var contents = (something) ? <span>Hello</span> : <div>World!</div>;
return (
<div>
{contents}
</div>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment