JSFiddle - React, Tailwind, and code Playground

by Christopher Stephens

HTML

<h1>
code sample
</h1>
<h2>
Results
</h2>
 <div id="results">

</div>

JavaScript

const print = (toPrint) => {
	const line =  document.createElement('pre');
  line.textContent = JSON.stringify(toPrint,null, 2);
	document.getElementById('results').appendChild(line);
}
console.log = print;

console.log('HI JARED');