Last active
August 15, 2023 15:49
-
-
Save SOSANA/1fec492bc6b2a9686d7eb0f4bb34c69a to your computer and use it in GitHub Desktop.
vscode snippet extension config for react
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
{ | |
"Functional component": { | |
"scope": "javascriptreact", | |
"prefix": "rcz", | |
"body": [ | |
"const ${TM_FILENAME_BASE} = () => {", | |
" return (<div><h1>${0:Hello World}</h1></div>);", | |
"}", | |
"export default ${TM_FILENAME_BASE}" | |
], | |
"description": "Create React functional Component" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment