protected async override Task OnInitializedAsync()
 {
     TodoItems = await TodoAppService.GetListAsync();
 }
Example #2
0
 public async Task OnGetAsync()
 {
     TodoItems = await _todoAppService.GetListAsync();
 }