Skip to content

Instantly share code, notes, and snippets.

@robtry
Created January 25, 2021 22:56
Show Gist options
  • Save robtry/522a3d83a0aa832eff4179bdd57f6812 to your computer and use it in GitHub Desktop.
Save robtry/522a3d83a0aa832eff4179bdd57f6812 to your computer and use it in GitHub Desktop.
Functional Component Typescript
import React from 'react';
const Component: React.FC = () => {
return (
<></>
)
}
export default Component;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment