JSFiddle - React, Tailwind, and code Playground

by Edward Tanguay

HTML

<div id="content"></div>

JavaScript

let elemContent = document.getElementById('content');

const html = `
<ul>
	<li>The first line</li>
	<li>The second line</li>
	<li>The third line</li>
</ul>
`;

elemContent.innerHTML = html;sdfsdf