One file, one readable unit
State, structure, behavior, and styles stay close enough to understand.
The syntax is compact, but the important decisions do not disappear into convention or compiler magic.
component Counter as counter-view:
state count i32 = 3
view:
output {count}
button "Increase"
on click:
count += 1
style:
radius 24px