using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.Settings.Components; /// /// ViewComponent for the reminders settings tab. /// Handles SMS and email reminder configuration. /// public class SettingsRemindersViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }