2023-07-29 10:19:42 +08:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ViewComponents
|
|
|
|
|
|
{
|
|
|
|
|
|
public class RedirecctLoginViewComponent : ViewComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
public async Task<IViewComponentResult> InvokeAsync()
|
|
|
|
|
|
{
|
|
|
|
|
|
return View();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|