Skip to content

Instantly share code, notes, and snippets.

@bewarusman
Last active January 8, 2021 22:11
Show Gist options
  • Save bewarusman/a64663cbf79f9b9d71c4874e04122fe0 to your computer and use it in GitHub Desktop.
Save bewarusman/a64663cbf79f9b9d71c4874e04122fe0 to your computer and use it in GitHub Desktop.
// This is a basic class component which only displays message in h1 tag.
import React from "react";
class Welcome extends React.Component {
render() {
return <h1>Hello, {this.props.name}</h1>;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment