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