const CSS = Gale({ Button:{ padding: "20px", background: "black", borderRadius: "20px", color: "white", fontWeight: "bolder" } }) const state = VanX.reactive({key1:"value1", key2:"value2", count:7}, "THING") console.log(state); Van.add ( document.body, Van.tags.div ( { class:CSS("Button"), onclick() { state.count++; } } , ()=>state.count ) );