Skip to content

Instantly share code, notes, and snippets.

@imgVOID
Forked from BetterProgramming/state.js
Created September 21, 2021 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imgVOID/ee3c02e6d81f60fea533d83c556ee1ca to your computer and use it in GitHub Desktop.
Save imgVOID/ee3c02e6d81f60fea533d83c556ee1ca 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