PlanTempusApp/PlanTempus.Application/Features/Settings/Components/SettingsTracking/SettingsTrackingViewComponent.cs

16 lines
369 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.Settings.Components;
/// <summary>
/// ViewComponent for the tracking settings tab.
/// Handles analytics and tracking code configuration.
/// </summary>
public class SettingsTrackingViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}