Skip to content

Instantly share code, notes, and snippets.

View RajvirS99's full-sized avatar
:octocat:
Web Dev

Rajvir Singh RajvirS99

:octocat:
Web Dev
View GitHub Profile
@elie222
elie222 / my-vs-code-snippets.json
Last active April 22, 2025 21:23
Favourite VS Code Snippets
{
"Export default": {
"scope": "javascript,typescript,javascriptreact,typescriptreact",
"prefix": "eid",
"body": [
"export { default } from './${TM_DIRECTORY/.*[\\/](.*)$$/$1/}'",
"$2"
],
"description": "Import and export default in a single line"
},