I\'m currently learning Front-end web development and the difference between Vanilla JavaScript, frameworks and libraries (React for example).
Now I\'m familiar with web compone
In React it's different.
Working with React you are using JSX.
This is just tag syntax, which is neither a string nor HTML.
Under the hood this syntax in converting to usual JavaScript(using Babel).
You can read more about it here.