Try your search with a different keyword or use * as a wildcard.
@model ConfigurationModel
@using Nop.Web.Framework.Models.AdminAreaTour
@{
Layout = "_ConfigurePlugin";
//tour step
ViewBag.TourStep = TourStep.PaymentPayPal;
var learnMore = "Learn more about the PayPal Commerce plugin configuration here.
";
}
@await Html.PartialAsync("_AdminTour")
@await Component.InvokeAsync(typeof(StoreScopeConfigurationViewComponent))
@if (Model.IsConfigured)
{
@await Component.InvokeAsync(typeof(SettingModeViewComponent))
}