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

13 lines
274 B
C#

using Microsoft.AspNetCore.Mvc;
namespace ConstructorAppUI.ViewComponents.HomeLayoutComponents
{
public class _HomeLayoutHeaderPartialComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}
}