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