I was editing a javascript file, and when I wrote: p{Hello} I expected it to convert into <p>Hello</p> .But it doesn't seem to happen. Is there anything else I need to do to configure this extension in VS Code to make it work? The code is given below.
import React, { Component } from "react";
const ArrowHeader = () => {
return(
p{Hello}
)
}
class App extends Component {
render() {
return (
<div className="App">
<h1>Hello Scaler</h1>
</div>
);
}
}
export default App;