Skip to content

Instantly share code, notes, and snippets.

@ciwolsey
Last active January 7, 2016 20:26
Show Gist options
  • Save ciwolsey/f8629e66907882c24bd4 to your computer and use it in GitHub Desktop.
Save ciwolsey/f8629e66907882c24bd4 to your computer and use it in GitHub Desktop.
<head></head>
<body>
<div id="root"></div>
</body>
import React from 'react';
import ReactDOM from 'react-dom';
import Router from 'react-router';
let App = React.createClass({
render(){
return(
<h1>Hello World</h1>
)
}
});
Meteor.startup(function(){
// Render app into root div
ReactDOM.render(<App/>, document.getElementById('root'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment