13 lines
276 B
C#
13 lines
276 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace ConstructorAppUI.ViewComponents.AdminLayoutComponents
|
|
{
|
|
public class _AdminLayoutScriptPartialComponent : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|