Update .tsx import statement snippet to be consistent with .ts (#34653)

Fixes https://github.com/Microsoft/vscode/issues/34646
This commit is contained in:
Oliver Joseph Ash
2017-09-19 20:41:19 +01:00
committed by Matt Bierner
parent 933e0a8127
commit 4f599ae71d
@@ -50,7 +50,7 @@
"Import external module.": {
"prefix": "import statement",
"body": [
"import ${1:name} = require('$0');"
"import { $0 } from \"${1:module}\";"
],
"description": "Import external module."
},