Skip to content

Instantly share code, notes, and snippets.

@mrzarkovic
Created October 29, 2018 10:38
Show Gist options
  • Save mrzarkovic/0c60f2190578ee5796bb0adbecc82df5 to your computer and use it in GitHub Desktop.
Save mrzarkovic/0c60f2190578ee5796bb0adbecc82df5 to your computer and use it in GitHub Desktop.
New ES6 class component
// ES6 + JSX
class TitleComponent extends React.Component {
render () {
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