Skip to content

Instantly share code, notes, and snippets.

View sohamsshah's full-sized avatar
🎯
Focusing

Soham Shah sohamsshah

🎯
Focusing
View GitHub Profile
@sohamsshah
sohamsshah / react_custom_vscode_snippets.json
Last active March 1, 2023 06:54
Custom React Code Snippet for VSCode
{
"reactArrowFunctionComponentWithDisplayName": {
"prefix": "rafcd",
"body": [
"export const ${1:${TM_FILENAME_BASE}} = () => {",
" return (",
" <div>${1:first}</div>",
" )",
"}",
"",