@postact/core
v0.0.15-rc0
Published
Simple, fast, lightweight web dev.
Maintainers
Readme
@postact/core
Simple, fast, lightweight web dev.
<div id="app"></div>import {
select,
state
html,
} from "@postact/core";
const $count = state(0);
function onClick() {
$count.update(v => v + 1)
}
return html`
<button onclick=${onClick}>${$count}</button>
`
select("#app").render(createApp())