@page "/"
@using MatrixRoomUtils.Web.Shared.IndexComponents
@inject NavigationManager NavigationManager
@inject ILocalStorageService LocalStorage
Index
Rory&::MatrixUtils
Small collection of tools to do not-so-everyday things.
@code
{
protected override async Task OnInitializedAsync() {
if (!RuntimeCache.WasLoaded) {
Console.WriteLine("[INDEX] !!! LOCALSTORAGE WAS NOT LOADED !!!");
await LocalStorageWrapper.LoadFromLocalStorage(LocalStorage);
}
await base.OnInitializedAsync();
}
}