VS Code: Snippet for Functional React Component in TypeScript
{
...
"Adds Functional React Component": {
"prefix": "react-functional-component",
"body": [
"import React from \\"react\\";",
"",
"export interface I${0}Props { }",
"",
"export const ${0}: React.FC<I${0}Props> = () => {",
"\\treturn (",
"\\t\\t<div />",
"\\t);",
"};"
]
}
}