Skip to content

Instantly share code, notes, and snippets.

@squadwuschel
Created August 27, 2016 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save squadwuschel/db8080065a7578f323ec7779f7b5720d to your computer and use it in GitHub Desktop.
Save squadwuschel/db8080065a7578f323ec7779f7b5720d to your computer and use it in GitHub Desktop.
JavaScript JSX Datei für Visual Studio 2015
var Hello = React.createClass({
render: function() {
return <div>Hello {this.props.name}</div>;
}
});
ReactDOM.render(
<Hello name="World" />,
document.getElementById('helloWorld')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment