JSFiddle - React, Tailwind, and code Playground

by Eric Howe

HTML

<div id="out"></div>

CoffeeScript

refresh_rate = 1000
setTimeout(f = (->
    $('#out').append('<p>pancakes</p>')
    setTimeout(f, refresh_rate)
), refresh_rate)