Skip to content

Instantly share code, notes, and snippets.

@mrzarkovic
Last active November 1, 2018 09:04
Show Gist options
  • Save mrzarkovic/a530ad0c7fd66c3285855f400af5f16a to your computer and use it in GitHub Desktop.
Save mrzarkovic/a530ad0c7fd66c3285855f400af5f16a to your computer and use it in GitHub Desktop.
New class component
var TitleComponent = React.createClass({
render: function () {
return React.createElement('h1', {className: 'main-title'}, this.props.title);
// Ili JSX sintaksa:
return <h1 className="main-title">{this.props.title}</h1>;
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment