Skip to content

Instantly share code, notes, and snippets.

@seongjoojin
Last active October 29, 2019 04:01
Show Gist options
  • Save seongjoojin/c0d9220c371dde09f92c0610be52ba76 to your computer and use it in GitHub Desktop.
Save seongjoojin/c0d9220c371dde09f92c0610be52ba76 to your computer and use it in GitHub Desktop.
typescript react vscode snippet
{
"React Typescript Functional Component": {
"prefix": "rtfc",
"body": [
"import React from 'react'",
"",
"const ${TM_FILENAME_BASE} = () => {",
" return (",
" <>${1}</>",
" )",
"}",
"",
"export default ${TM_FILENAME_BASE}",
""
],
"description": "React Typescript Functional Component"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment