Skip to content

Instantly share code, notes, and snippets.

@francoisgeorgy
Created September 2, 2020 15:35
Show Gist options
  • Select an option

  • Save francoisgeorgy/92484bfb1812bdc9c3a398b8d65f3a20 to your computer and use it in GitHub Desktop.

Select an option

Save francoisgeorgy/92484bfb1812bdc9c3a398b8d65f3a20 to your computer and use it in GitHub Desktop.
#react #typescript functionnal component definition
interface WelcomeProps {
name: string;
}
const Welcome: React.FC<WelcomeProps> = (props) => <h1>Hello, {props.name}</h1>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment