This commit is contained in:
ManjaroOne666 2019-08-22 21:11:43 +01:00
commit e2517ba58e
3 changed files with 13 additions and 3 deletions

View file

@ -40,3 +40,13 @@ snippet st "setTimeout( ... )"
setTimeout(() => {$0
}, ${1:1000});
endsnippet
snippet jsx "import React ..."
import React from "react"
export default () => (
<${1:div}>
$0
</$1>
)
endsnippet