PlanTempusApp/PlanTempus.DeprecatedApplication/Components/Navigation/NavigationViewComponent.cs
Janus C. H. Knudsen 7fc1ae0650 WIP
2026-01-10 20:39:17 +01:00

18 lines
451 B
C#

using Microsoft.ApplicationInsights;
using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Components.Navigation
{
public class NavigationViewComponent : ViewComponent
{
public NavigationViewComponent(TelemetryClient telemetryClient)
{
}
public IViewComponentResult Invoke()
{
return View(new { Title = "Hej", Description = "Dette edr en beskrivdelse" });
}
}
}