Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created August 2, 2021 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save BetterProgramming/ff7beee09fe5a717fa9683928db06a46 to your computer and use it in GitHub Desktop.
Save BetterProgramming/ff7beee09fe5a717fa9683928db06a46 to your computer and use it in GitHub Desktop.
class Welcome extends React.Component {
constructor(props) {
super(props);
this.state = {};
}
render() {
return (
<div>
<h1>Hello, world!</h1>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment