Last active
April 28, 2020 22:57
-
-
Save lastrafda/98aa902132905dcf1704167feb3ae30a to your computer and use it in GitHub Desktop.
My snippets
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
{ | |
"Print to console": { | |
"prefix": "clog", | |
"body": [ | |
"console.log('$1');", | |
"$2" | |
], | |
"description": "Log output to console" | |
}, | |
"Create a new react component": { | |
"prefix": "nc", | |
"body": [ | |
"import React from 'react'", | |
"\n", | |
"const $TM_FILENAME_BASE = ($1) => {", | |
" return (", | |
" <div>", | |
" </div>", | |
" )", | |
"}", | |
"\n", | |
"export default $TM_FILENAME_BASE" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment