JSFiddle - React, Tailwind, and code Playground

by manchagnu

HTML

<script src="http://softgpl.com/libs/js/rivets.js"></script>
<script src="http://softgpl.com/libs/js/rivets.ie7.js"></script>
<div id="helloworld" rv-text="hello.world"></div>

JavaScript

var data = {
    world: "Hello world!"
};

$(function() {
  rivets.bind($("#helloworld"), {
    hello:data
  });
});