van-hmr/app.js
2025-02-07 09:58:54 -05:00

30 lines
500 B
JavaScript

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
)
);