Last active
November 8, 2019 14:45
-
-
Save median-man/dc13ba4ac256c3c622500a026ef0d20a to your computer and use it in GitHub Desktop.
VSCode User 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
{ | |
"react component": { | |
"description": "A functional react component file template.", | |
"prefix": ["re", "rc", "react-comp", "comp"], | |
"body": [ | |
"import React from \"react\"", | |
"", | |
"const ${1:ComponentName} = () => <div>${1:ComponentName} Component</div>", | |
"", | |
"export default ${1:ComponentName}", | |
"" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment