Last active
March 11, 2022 17:21
-
-
Save visortelle/271627130d7dfcfa44e1f71fc5b6dfaf to your computer and use it in GitHub Desktop.
VSCode React snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"New component": { | |
"prefix": "rfc", | |
"body": [ | |
"import React from 'react';\nimport s from './$1.module.css'\n\nexport type $1Props = {};\n\nconst $1: React.FC<$1Props> = (props) => {\n return (\n <div className={s.$1}>$0</div>\n );\n}\n\nexport default $1;" | |
], | |
"description": "Create new component" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How it works:
Screen.Recording.2022-03-11.at.6.17.20.PM.mov