Files
cherry-studio/.vscode/snippet.code-snippets
2024-05-24 12:45:41 +08:00

20 lines
392 B
Plaintext

{
"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"
}
}