Skip to content

Instantly share code, notes, and snippets.

@EdsonAlcala
Created May 17, 2018 17:18
Show Gist options
  • Select an option

  • Save EdsonAlcala/5a8958eeec7cb2e91e5afa3c02f6d71c to your computer and use it in GitHub Desktop.

Select an option

Save EdsonAlcala/5a8958eeec7cb2e91e5afa3c02f6d71c to your computer and use it in GitHub Desktop.
import * as React from 'react';
interface Props {
name?: string;
}
const Header: React.SFC<Props> = (props: Props) => (
<h1>
Hello, {props.name}! Welcome to React and TypeScript.
</h1>
);
Header.defaultProps = {
name: 'world',
};
export default Header;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment