JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://chrismichaelscott.github.io/iugo/iugo.min.js"></script>
<div>
<p class="bindto-title"></p>
<p class="bindto-author-firstname">
</p>
<p class="bindto-description"></p>
</div>
JavaScript
var model = new Iugo({
isbn: "",
title: "",
description: "",
author: {
firstname: "",
surname: ""
}
});
// Set some value - this could be via an API (as per home page example)
model.title = "20 Thousand Leagues Under2 The Sea";
model.description = "It's about a submarine";
model.author.firstname = "Jules";
model.author.surname = "Verne";