You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an HTML string that's being returned via an API call in Blazor. I'd love to use HtmlTags to then display these in my Blazor component. Is this possible? Currently I have
@foreach (var element in _form.Elements)
{
var htmlElement = new HtmlTag(element.Html);
<what do I put here to render it?>
}
I'm not sure how to get that element rendered?
The text was updated successfully, but these errors were encountered:
I have an HTML string that's being returned via an API call in Blazor. I'd love to use HtmlTags to then display these in my Blazor component. Is this possible? Currently I have
I'm not sure how to get that element rendered?
The text was updated successfully, but these errors were encountered: