UNPKG

create-vanjs

Version:

🍦 Quick tool for scaffolding your first VanJS project

13 lines (10 loc) 231 B
import van from "npm:vanjs-core"; const Counter = () => { const counter = van.state(0); return ( <button type="button" onClick={() => ++counter.val}> Counter: {counter} </button> ); }; export default Counter;