blob: fea48a2e442b59712ed9b96627a22739f830c47e [file]
const el = document.createElement('div');
const text: string = 'Hello, World';
el.innerText = text;
document.body.appendChild(el);