using Microsoft.AspNetCore.Mvc; using Nop.Web.Framework.Components; namespace Nop.Plugin.ExternalAuth.Facebook.Components; /// /// Represents view component to display login button /// public class FacebookAuthenticationViewComponent : NopViewComponent { /// /// Invoke view component /// /// Widget zone name /// Additional data /// View component result public IViewComponentResult Invoke(string widgetZone, object additionalData) { return View("~/Plugins/ExternalAuth.Facebook/Views/PublicInfo.cshtml"); } }