9 lines
279 B
C#

using Microsoft.AspNetCore.Mvc;
namespace EnotaryoPH.Web.Pages.Shared.Components.TakeSelfieImage
{
public class TakeSelfieImageViewComponent : ViewComponent
{
public async Task<IViewComponentResult> InvokeAsync(TakeSelfieImageModel model) => View(model);
}
}