10 lines
203 B
Text
10 lines
203 B
Text
|
|
@namespace LANCommander.UI.Components
|
||
|
|
|
||
|
|
@if (!String.IsNullOrWhiteSpace(Content))
|
||
|
|
{
|
||
|
|
@((MarkupString)@Markdig.Markdown.ToHtml(Content))
|
||
|
|
}
|
||
|
|
|
||
|
|
@code {
|
||
|
|
[Parameter] public string? Content { get; set; }
|
||
|
|
}
|