@inject IClientAppState AppState @if (_theme == Theme.Dark) {
} else if (_theme == Theme.Light) {
} @code { private Theme _theme; protected override async Task OnInitializedAsync() { await base.OnInitializedAsync(); _theme = await AppState.GetEffectiveTheme(); } }