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