JSFiddle - React, Tailwind, and code Playground

by suncannon

HTML

<div id="synth"> 
  <span mt="dial" id="freq"></span>
  <span mt="dial" id="volume"></span>
  <span mt="dial" id="mod"></span>
</div>

JavaScript

var synth = mt.rack("synth")

synth.freq.value = 0.25
synth.volume.value = 0.5
synth.mod.value = 0.75

synth.freq.on('change',function(v) {
  console.log(v);
})