Files
agent-framework/dotnet/samples/AGUIDojo/AGUIDojoClient/Components/Pages/Index.razor
T
Javier Calvarro Nelson 0340531f3a Add AG-UI Blazor sample
2025-12-10 16:46:50 +01:00

21 lines
604 B
Plaintext

@* Copyright (c) Microsoft. All rights reserved. *@
@page "/"
@using AGUIDojoClient.Components.Shared
@inject DemoService DemoService
@inject NavigationManager Nav
@code {
protected override void OnAfterRender(bool firstRender)
{
if (firstRender)
{
// Redirect to the first demo scenario
DemoScenario? firstScenario = DemoService.AllScenarios.FirstOrDefault();
if (firstScenario is not null)
{
Nav.NavigateTo($"/microsoft-agent-framework/feature/{firstScenario.Id}", replace: true);
}
}
}
}