using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.Settings.Components; /// /// ViewComponent for the calendar settings tab. /// Handles calendar view options, resources, and intervals. /// public class SettingsCalendarViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }