Files
constructdemo/ConstructorAppUI/ViewComponents/AdminLayoutComponents/_AdminLayoutSidebarPartialComponent.cs
2025-05-01 15:18:30 +03:00

13 lines
294 B
C#

using Microsoft.AspNetCore.Mvc;
namespace ConstructorAppUI.ViewComponents.AdminLayoutComponents
{
public class _AdminLayoutSidebarPartialComponent : ViewComponent
{
public async Task<IViewComponentResult> InvokeAsync()
{
return View();
}
}
}