13 lines
379 B
C#
13 lines
379 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Nop.Web.Framework.Components;
|
|
|
|
namespace Nop.Plugin.Misc.FruitBankPlugin.Components;
|
|
|
|
public class CustomerPreorderNavViewComponent : NopViewComponent
|
|
{
|
|
public IViewComponentResult Invoke(string widgetZone, object additionalData)
|
|
{
|
|
return View("~/Plugins/Misc.FruitBankPlugin/Views/CustomerPreorder/NavItem.cshtml");
|
|
}
|
|
}
|