@page "/raidoverview" @using Lieb.Data @inject RaidService RaidService

RaidOverview

@foreach (var raid in raids) {

wupwup

} @code { private List raids; protected override async Task OnInitializedAsync() { raids = RaidService.GetRaids(); } }