The ${} is template literals. What's {} without the $ sign?
In React:
function App(){
return(<div temp={3}></div>);
}
(I was looking up the difference and nothing came up. So, I think this question is needed as I couldn't know if I was using JS or JSX.)