Skip to content

Instantly share code, notes, and snippets.

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