@page "/docs"
@inject Web.Services.DocsService DocsService
Docs
Documentation
@if (notes == null)
{
Loading...
}
else
{
@foreach (var note in notes.OrderBy(n => n.Title))
{
@note.Title
}
}
@code {
private List? notes;
protected override async Task OnInitializedAsync()
{
var index = await DocsService.GetIndexAsync();
notes = index.Notes;
}
}