Skip to content

Instantly share code, notes, and snippets.

@mmcguff
Created August 12, 2021 09:30
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 mmcguff/af5c78b78ef4eb61240d6e974d9512c9 to your computer and use it in GitHub Desktop.
Save mmcguff/af5c78b78ef4eb61240d6e974d9512c9 to your computer and use it in GitHub Desktop.
class Clock extends React.Component {
render() {
return (
<div>
<h1>Hello, world!</h1>
<h2>It is {this.props.date.toLocaleTimeString()}.</h2>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment