@page "/docs" @inject DocsService DocsService Documentation

Documentation

@if (index == null) {
Loading...
} 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(); } }