Simple, fast, lightweight web dev.
npm install @postact/core``html`
`ts
import {
select,
state
html,
} from "@postact/core";
const $count = state(0);
function onClick() {
$count.update(v => v + 1)
}
return html
select("#app").render(createApp())
``