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