JSFiddle - React, Tailwind, and code Playground

by understore

HTML

<script src="https://unpkg.com/[email protected]/dist/scv.min.js"></script>
<div class="target"></div>

CSS

scv_example{display:block;}

JavaScript

var scv_exampleTpl = '<span>{this.text}</span>';
Scv({
    id : "scv_example",
    template : scv_exampleTpl,
    target : document.querySelector(".target"),
    data : {text : "hello world"}
});