16 lines
403 B
C#
16 lines
403 B
C#
using Microsoft.AspNetCore.Components;
|
|
using Front.Program.Services;
|
|
|
|
namespace Front.Program.Views.Project;
|
|
|
|
public partial class About : ComponentBase
|
|
{
|
|
[Inject]
|
|
NavigationManager NavigationManager { get; set; } = default!;
|
|
private async Task OnClickEvent()
|
|
{
|
|
// NavigationManager.NavigateTo("/redirectpage");
|
|
Console.WriteLine("Redirecting to redirect page");
|
|
|
|
}
|
|
} |