PlanTempusApp/Application/Components/Navigation/NavigationViewComponent.cs

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" });
}
}
}