Skip to content

Instantly share code, notes, and snippets.

@tc87
Last active July 14, 2020 01:08
Show Gist options
  • Save tc87/edab96c2813e9b8ccfc986d9bfad80dc to your computer and use it in GitHub Desktop.
Save tc87/edab96c2813e9b8ccfc986d9bfad80dc to your computer and use it in GitHub Desktop.
public render = (): ReactNode => {
return (
<span>
Hello, {this.props.args["name"]}! &nbsp;
<button onClick={this.onClicked} disabled={this.props.disabled}>
Click Me!
</button>
</span>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment