feat(vscode): added new snippet for creating React function components

This commit is contained in:
kangfenmao 2024-05-24 12:38:16 +08:00
parent 21f937a9cc
commit 6acd758342

19
.vscode/snippet.code-snippets vendored Normal file
View File

@ -0,0 +1,19 @@
{
"Function component": {
"prefix": "rnfc",
"body": [
"import { FC } from 'react'",
"import styled from 'styled-components'",
"",
"const $1: FC = () => {",
" return <Container></Container>",
"}",
"",
"const Container = styled.div``",
"",
"export default $1",
""
],
"description": "Function component"
}
}