@namespace AntDesign @inherits AntDomComponentBase
@if (Avatar.Value != null && Content.Value != null) {
@if (Avatar.IsT0) { } else { @Avatar.AsT1 }
@if (Content.IsT0) {

@Content.AsT0

} else { @Content.AsT1 }
@if (Actions.Count > 0) {
    @foreach (RenderFragment action in Actions) {
  • @action
  • }
}
}
@ChildContent