@model Comment
@Model.Content @if (Model.Children!=null) {
@foreach (var comment in Model.Children) { @await this.Component.InvokeAsync("Comment", new { id = comment.Id}); }
}