Skip to content

Instantly share code, notes, and snippets.

@tj-mc
Last active December 27, 2020 03:16
Show Gist options
  • Save tj-mc/18139b365e55a8cea8588def201e6fe7 to your computer and use it in GitHub Desktop.
Save tj-mc/18139b365e55a8cea8588def201e6fe7 to your computer and use it in GitHub Desktop.
type ComponentPropTypes {
text: string
}
const Component: React.FunctionComponent<ComponentPropTypes> = ({text}) => {
return (
<> </>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment