Last active
June 13, 2022 17:29
-
-
Save cbejensen/0698a051f8c97ecb9509fc2dac18b727 to your computer and use it in GitHub Desktop.
VS Code React Component Snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Component": { | |
"prefix": "fc", | |
"body": [ | |
"import React from 'react';", | |
"", | |
"export interface ${TM_FILENAME_BASE/(.*)/${1:/pascalcase}/g}Props {", | |
"\t$1", | |
"}", | |
"", | |
"export function ${TM_FILENAME_BASE/(.*)/${1:/pascalcase}/g}(${2:props}: ${TM_FILENAME_BASE/(.*)/${1:/pascalcase}/g}Props) {", | |
"\t$3", | |
"\treturn ${4:null};", | |
"}" | |
], | |
"description": "Minimal function component" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Assumes kebab-case file names