using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.Kasse.Components; /// /// ViewComponent for the reconciliation table on the Kasse list page. /// Shows all reconciliations with action bar and SAF-T export. /// public class KasseTableViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }