PlanTempusApp/PlanTempus.Application/Features/OnlineBooking/Components/OnlineBookingPreview/OnlineBookingPreviewViewComponent.cs

15 lines
343 B
C#
Raw Permalink Normal View History

using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.OnlineBooking.Components;
/// <summary>
/// ViewComponent for the booking preview iframe with device toggle.
/// </summary>
public class OnlineBookingPreviewViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}