JSFiddle - React, Tailwind, and code Playground
by spanja
HTML
<body>
<p>Datetime:
<input name="datetime" id="datetimepicker">
</p>
<p>Time:
<input name="time" id="timepicker">
</p>
<!-- <select id="combobox">
<option value="FVOD">FVOD</option>
<option value="TVOD">TVOD</option>
<option value="SVOD">SVOD</option>
</select> -->
<p>
<div class="my-radio">VodType:
<input type="radio" id="radio1" name="radio">
<label for="radio1">FVOD</label>
<input type="radio" id="radio2" name="radio" checked="checked">
<label for="radio2">TVOD</label>
<input type="radio" id="radio3" name="radio">
<label for="radio3">SVOD</label>
</div>
</p>
<p>
<div class="my-radio">Preview:
<input type="radio" id="radioY1" name="radioY">
<label for="radioY1">ON</label>
<input type="radio" id="radioY2" name="radioY" checked="checked">
<label for="radioY2">OFF</label>
</div>
</p>
<p>NodeTable:
<textarea></textarea>
</p>
</body>
JavaScript
$("#datetimepicker").datepicker();
$(".my-radio").buttonset();
sdfsdfs