@page "/docs"
@inject DocsService DocsService
Documentation
@if (index == null)
{
}
else
{
@foreach (var note in index.Notes.OrderBy(n => n.Title))
{
@note.Category
@note.Title
Explore details about @note.Title
}
}
@code {
private NotesIndex? index;
protected override async Task OnInitializedAsync()
{
index = await DocsService.GetIndexAsync();
}
}