another cute fun react vs code snippet :)

This commit is contained in:
Emi Matchu 2020-09-12 17:54:34 -07:00
parent ef7ba58c90
commit ba3ea5d321

View file

@ -17,7 +17,7 @@
// } // }
"Component file": { "Component file": {
"scope": "javascript", "scope": "javascript",
"prefix": "component", "prefix": "componentfile",
"body": [ "body": [
"import React from \"react\";", "import React from \"react\";",
"import { Box } from \"@chakra-ui/core\";", "import { Box } from \"@chakra-ui/core\";",
@ -28,5 +28,14 @@
"", "",
"export default $TM_FILENAME_BASE;" "export default $TM_FILENAME_BASE;"
] ]
},
"Function component": {
"scope": "javascript",
"prefix": "fncomponent",
"body": [
"function ${1:Component}({${2:children}}) {",
" return ${3:<Box>$4</Box>};",
"}"
]
} }
} }