@page "/person/{Address}" @inject State State

@Address

@Address
@if (bio == null) {

Getting Bio...

} else { @bio }
Status.lol Some.pics
@code { [Parameter] public string Address { get; set; } private MarkupString? bio; protected override async Task OnInitializedAsync() { bio = await State.GetBio(Address); } }