Skip to content

Instantly share code, notes, and snippets.

@trinwin
Created August 2, 2020 01:10
Show Gist options
  • Save trinwin/772a7efaa4bca853c97cb62a57b4ce91 to your computer and use it in GitHub Desktop.
Save trinwin/772a7efaa4bca853c97cb62a57b4ce91 to your computer and use it in GitHub Desktop.
import * as React from "react";
type Props = {
text: string;
};
export default ({ text }: Props) => <button>{text}</button>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment