Skip to content

Instantly share code, notes, and snippets.

@uxnjs01
Created August 24, 2015 01:41
Show Gist options
  • Save uxnjs01/07eaceef9b3ef2e19adc to your computer and use it in GitHub Desktop.
Save uxnjs01/07eaceef9b3ef2e19adc to your computer and use it in GitHub Desktop.
React className Example
var ExampleComponent = React.createClass({
render: function() {
var hello = "hello";
return (
<h1 className={ hello }>Hello, World!</h1>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment