mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
21 lines
604 B
Plaintext
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);
|
|
}
|
|
}
|
|
}
|
|
}
|