JSFiddle - React, Tailwind, and code Playground

by jamygolden

HTML

<div id="header"></div>

JavaScript

var header = document.getElementById('header'),
    text = document.createTextNode('this is some text win');

header.appendChild(text);