@teddytags/vdom

Virtual DOM for TeddyTags

Usage no npm install needed!

<script type="module">
  import teddytagsVdom from 'https://cdn.skypack.dev/@teddytags/vdom';
</script>

README

TeddyTags VDOM

The VDOM for TeddyTags

Usage

import { h, render } from "https://cdn.jsdelivr.net/@teddytags/vdom?module";
h("h1",
 {name : "H1"}
 h(span,
   null,
   "Hello World!"));

Returns

<h1 name="H1">
    <span>Helo World!!!</span>
</h1>