using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.Kasse.Components; /// /// ViewComponent for the approval section. /// Handles status, approver selection, and confirmation checkbox. /// public class KasseGodkendelseViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }