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

Formio.builder(document.getElementById("formio"), {}, {
  language: 'en',
  i18n: {
    en: {
      'API Key is not unique: {{ key }}': "Howdy, doody you need a new key!"
    }
  }
});