Created
July 24, 2024 07:39
-
-
Save Rasinzz/c65df5ac4fede0a8410ca9549db6d54f to your computer and use it in GitHub Desktop.
VSCode React Functional Component Export Snippet
This file contains hidden or 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
{ | |
"Functional Component Export": { | |
"prefix": "fce", | |
"body": [ | |
"const $1 = () => {", | |
" return <div>$1</div>;", | |
"};", | |
"", | |
"export default $1;" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment