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