Skip to content

Instantly share code, notes, and snippets.

@peterlazar1993
Created November 19, 2015 09:56
Show Gist options
  • Save peterlazar1993/07df955981a30b248334 to your computer and use it in GitHub Desktop.
Save peterlazar1993/07df955981a30b248334 to your computer and use it in GitHub Desktop.
React HelloWorld ES6
class HelloWorld extends React.Component {
render() {
return (
<div>
Hello, World!
</div>
);
}
};
React.render(<HelloWorld />, document.getElementById('container'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment