using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.Settings.Components; /// /// ViewComponent for the invoice and receipt settings tab. /// Handles invoice templates, receipt settings, and numbering. /// public class SettingsBillingViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }