gale/app.js

19 lines
387 B
JavaScript
Raw Normal View History

2025-02-13 14:27:41 -05:00
const {DOM} = Gale({
Button: {
padding: "20px",
background: "orange",
".Inner": {
fontSize: "10rem"
2025-02-12 16:09:59 -05:00
}
},
2025-02-13 14:27:41 -05:00
Outline: {
border: "2px solid orange"
}
2025-02-12 16:09:59 -05:00
});
2025-02-13 14:27:41 -05:00
const el = DOM.a.Button.Outline({onclick(){console.log("clicked!")}}, "Click!");
2025-02-12 16:57:41 -05:00
console.log(el);
2025-02-13 14:27:41 -05:00
van.add(document.body, el, DOM.h1.Outline["Button.Inner"]("title"));