Trying to use emmet with a react app in vs code
In case the marked answer dont work!
In VS Code open settings using command:
On PC: Ctrl + ,
On Mac: Command + ,
Be sure workspace
is selected
Search Emmet, scroll down to Emmet Include Language
and open settings.JSON
file
Paste the following code and save the file. Reload VS CODE
and it will work!:
{
"emmet.includeLanguages": {
"javascript": "javascriptreact"
}
}
Add this to settings JSON:
"emmet.includeLanguages": {
"javascript": "javascriptreact"
}