Skip to content

Instantly share code, notes, and snippets.

@AdamBrodzinski
Created July 20, 2015 01:49
Show Gist options
  • Save AdamBrodzinski/04765fd957f49a0c142c to your computer and use it in GitHub Desktop.
Save AdamBrodzinski/04765fd957f49a0c142c to your computer and use it in GitHub Desktop.
EvenOrOdd.jsx Step 1
EvenOrOdd = React.createClass({
render() {
return (
<div className='EvenOrOdd'>
Hello World
</div>
);
}
});
if (Meteor.isClient) {
Meteor.startup(function() {
React.render(<EvenOrOdd />, document.getElementById('app'));
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment