Skip to content

Instantly share code, notes, and snippets.

@konsalex
Last active February 21, 2021 15:53
Show Gist options
  • Save konsalex/a56a85352473de566e23016134fd8fd9 to your computer and use it in GitHub Desktop.
Save konsalex/a56a85352473de566e23016134fd8fd9 to your computer and use it in GitHub Desktop.
Create React Functional Component (VScode snippet)
{
"Functional Default Component": {
"scope": "javascript,typescript,typescriptreact, javascriptreact",
"prefix": "rdc",
"body": [
"export default function ${TM_FILENAME_BASE}() {",
" return (<>Template</>);",
"}"
],
"description": "Creates React functional component with default export"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment