using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.Kasse.Components; /// /// ViewComponent for the stats bar on the Kasse list page. /// Shows summary statistics for reconciliations. /// public class KasseStatsBarViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }