Skip to main content
Component Name: App.razor
Version: 1.0.0

Dependencies

Services:
AdminSettingsService

Lifecycle Methods

protected override async Task OnInitializedAsync()
{
    await AdminSettingsService.InitializeCurrentAdminSettingsAsync();
}

Cascading Authentication

<body>
    //Authentication is provided by the Microsoft Entra Id service registered in Program.cs
    <CascadingAuthenticationState>
        <Routes @rendermode="InteractiveServer" /> //Setting the render mode of the Blazor app 
    </CascadingAuthenticationState>

    //JS scripts
</body>