Skip to content

Instantly share code, notes, and snippets.

@hisasann
Created March 20, 2015 06:41
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 hisasann/0f70abe01786ac1abd9f to your computer and use it in GitHub Desktop.
Save hisasann/0f70abe01786ac1abd9f to your computer and use it in GitHub Desktop.
var NewComponent = React.createClass({
render: function() {
return (
<div>
{/* Hello world */}
<div className="awesome" style={{border: '1px solid red'}}>
<label htmlFor="name">Enter your name: </label>
<input type="text" id="name" />
</div>
<p>Enter your HTML here</p>
</div>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment