[Page("/", Title = "MyApp")]
public sealed class HomePage : StatefulComponent
{
private int _count;
public override VisualNode Build(ComponentContext ctx) =>
Box(new BoxStyle { Background = ctx.Theme.Background },
Column(gap: Space.S4, children:
[
Text($"{_count}", TypeRole.Display),
Button("Count", onPressed: () =>
SetState(() => _count++)),
]));
}