@page "/statuslog/latest"
@if (statuses == null) {
}
else
{
@foreach (var status in statuses) {
}
}
@code {
private Status[]? statuses;
protected override async Task OnInitializedAsync()
{
RestService api = new RestService();
statuses = (await api.StatuslogLatest()).ToArray();
}
}