Skip to content

Instantly share code, notes, and snippets.

@RaufR
Created June 23, 2019 13:59
Show Gist options
  • Save RaufR/e96f6e93c8d1df75907b61d2873479f6 to your computer and use it in GitHub Desktop.
Save RaufR/e96f6e93c8d1df75907b61d2873479f6 to your computer and use it in GitHub Desktop.
class HelloWorld extends React.Component {
constructor(props) {
super(props);
}
render () {
return (
<h1>Hello world</h1>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment