2025-01-14 23:10:30 +01:00
|
|
|
|
using Microsoft.ApplicationInsights;
|
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
2025-02-20 00:23:13 +01:00
|
|
|
|
namespace PlanTempus.Application.Components.Navigation
|
2025-01-14 23:10:30 +01:00
|
|
|
|
{
|
|
|
|
|
|
public class NavigationViewComponent : ViewComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public NavigationViewComponent(TelemetryClient telemetryClient)
|
|
|
|
|
|
{
|
2025-02-20 00:23:13 +01:00
|
|
|
|
|
2025-01-14 23:10:30 +01:00
|
|
|
|
}
|
|
|
|
|
|
public IViewComponentResult Invoke()
|
|
|
|
|
|
{
|
|
|
|
|
|
return View(new { Title = "Hej", Description = "Dette edr en beskrivdelse" });
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|