using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.Account.Components; /// /// ViewComponent for the payment method display. /// Shows current card info, payment frequency, and next payment date. /// public class PaymentMethodViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }