JSFiddle - React, Tailwind, and code Playground
HTML
<my-app></my-app>
<script type="module">
import { Component } from "//unpkg.com/can@^5.0.0-pre.1/core.mjs";
Component.extend({
tag: "my-app",
view: `CanJS {{feels}} modules`,
ViewModel: {
feels: { default: "😍" }
}
});
</script>