If you want to use an HTML element in vanilla JavaScript without using a function like Document.createElement(), you need to use it like this:
const App = `<h1>Hello, world</h1>`;
But is there a way to do this in vanilla JavaScript, just HTML tags without a string declaration (signs like ``)? For example:
const App = <h1>Hello, world</h1>;