JSFiddle - React, Tailwind, and code Playground

by brendanbond

HTML

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.form.io/formiojs/formio.full.min.css">
<script src="https://cdn.form.io/formiojs/formio.full.min.js"></script>
<div class="container">
  <div id="formio" />
</div>

JavaScript

function convertToCelcius(value) {
  return (value - 32) * (5 / 9);
}

Formio.createForm(document.getElementById("formio"), "https://thunderdome.form.io/applicationlevelfunctioncalls");