diff --git a/.vscode/snippet.code-snippets b/.vscode/snippet.code-snippets new file mode 100644 index 00000000..59c1d094 --- /dev/null +++ b/.vscode/snippet.code-snippets @@ -0,0 +1,19 @@ +{ + "Function component": { + "prefix": "rnfc", + "body": [ + "import { FC } from 'react'", + "import styled from 'styled-components'", + "", + "const $1: FC = () => {", + " return ", + "}", + "", + "const Container = styled.div``", + "", + "export default $1", + "" + ], + "description": "Function component" + } +} \ No newline at end of file