UNPKG

ziko-wrapper

Version:

integrate zikojs elements within other ui framework like vue react solidjs svelte astro ...

11 lines (9 loc) 228 B
import van from "vanjs-core"; const Counter = () => { const { button } = van.tags; const counter = van.state(0); return ( button({ onclick: () => ++counter.val }, "Counter: ", counter) ); }; export default Counter;