Skip to content

Instantly share code, notes, and snippets.

@Rasinzz
Created July 24, 2024 07:39
Show Gist options
  • Save Rasinzz/c65df5ac4fede0a8410ca9549db6d54f to your computer and use it in GitHub Desktop.
Save Rasinzz/c65df5ac4fede0a8410ca9549db6d54f to your computer and use it in GitHub Desktop.
VSCode React Functional Component Export Snippet
{
"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