using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.Settings.Components; /// /// ViewComponent for the opening hours settings tab. /// Handles weekly opening hours with toggles. /// public class SettingsHoursViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }