simple js library for html
npm install htonjssimple & lightweight html render
``html`Hello {text}
`js``
import { create } from "htonjs";
create((state) => {
setTimeout(() => {
state.text = "hello world";
}, 1000);
return {
text: "hello",
};
}).mount(document.querySelector("#app"));