An open API service indexing awesome lists of open source software.

https://github.com/programming-communities/snippets

VSCode Snippets For Web Developers
https://github.com/programming-communities/snippets

Last synced: 11 months ago
JSON representation

VSCode Snippets For Web Developers

Awesome Lists containing this project

README

          

## VSCode Snippets For Web Developers

(User Snippet)

```
"div": {
"prefix": "div",
"body": [
"

"
],
"description": "Basic div element with className"
},

```

```


```

"compt": {
"prefix": "cons",
"body": [
"const ${1:${TM_FILENAME_BASE/(.)(.*)/${1:/capitalize}${2}/}} = () => {",
" return (",
"

${1:${TM_FILENAME_BASE/(.)(.*)/${1:/capitalize}${2}/}}
",
" )",
"}",
"",
"export default ${1:${TM_FILENAME_BASE/(.)(.*)/${1:/capitalize}${2}/}}"
],
"description": "Create a component with tailwind classname"
}

```
const Page = () => {
return (

Page

)
}

export default Page

```