@page "/Rooms"

Room list

@if (Rooms != null) { } @code { private List Rooms { get; set; } protected override async Task OnInitializedAsync() { await LocalStorageWrapper.LoadFromLocalStorage(LocalStorage); Rooms = await RuntimeCache.CurrentHomeServer.GetJoinedRooms(); await base.OnInitializedAsync(); } }