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