Skip to content

Instantly share code, notes, and snippets.

@agkovalev
agkovalev / typescriptreact.json
Last active November 6, 2021 14:34
My VS Code Snippet for typescript react functional component (based on folder name)
{
"Alexey's Functional Component": {
"prefix": ["afc"],
"body": [
"import classes from './index.module.scss';",
"import { FC } from 'react';",
"",
"interface I${TM_DIRECTORY/.*\\\\(.*)$/$1/} {",
"}",
"",