VS Code: Snippet for Functional React Component in TypeScript

Post cover image
{
...
"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);",
			"};"
		]
	}
}