Skip to content

Instantly share code, notes, and snippets.

@Mr-Kumar-Abhishek
Created November 16, 2021 21:17
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 Mr-Kumar-Abhishek/b72bd22cf82511641216594ec77ba2e7 to your computer and use it in GitHub Desktop.
Save Mr-Kumar-Abhishek/b72bd22cf82511641216594ec77ba2e7 to your computer and use it in GitHub Desktop.
Basic React Component
class Kitten extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<h1>Hi</h1>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment