JSFiddle - React, Tailwind, and code Playground

by Qwerty_Wasd

HTML

<div class="wrapper"></div>

JavaScript

class Html {
	constructor(settings){
		this.elem = document.querySelector(settings.elem);
		this._temp = settings.temp;
		 this.init();
	}
	init(){
			this.elem.innerHTML = this._temp;
			console.log(this.elem);
	}
}
new Html({
	elem: '.wrapper',
	temp: '<h1>some text</h1>'
});