Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Last active May 3, 2019 13:34
Show Gist options
  • Save jlittlejohn/6d927eacd0a9e09c868220a11bc889c5 to your computer and use it in GitHub Desktop.
Save jlittlejohn/6d927eacd0a9e09c868220a11bc889c5 to your computer and use it in GitHub Desktop.
REACT: Basic Stateless Functional Component - TypeScript
export interface ButtonProps {
label?: string;
}
const Button: React.FunctionComponent<ButtonProps> = props => {
return <button>{props.label}</button>;
};
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment