Skip to content

Instantly share code, notes, and snippets.

@maruware
Created September 30, 2019 02:38
Show Gist options
  • Save maruware/6764966be18cf223339b92fe15d3906d to your computer and use it in GitHub Desktop.
Save maruware/6764966be18cf223339b92fe15d3906d to your computer and use it in GitHub Desktop.
VS Code Sinippet: React FC Typescript
{
"React FC": {
"prefix": "rfc",
"body": [
"import React from 'react'",
"export interface ${TM_FILENAME_BASE}Props {",
"}",
"",
"export const ${TM_FILENAME_BASE}: React.FC<${TM_FILENAME_BASE}Props> = () => {",
"}"
],
"description": "React FC"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment