SharpRSS/WebSharpRSS/Shared/ReadDialog.razor
2023-06-16 22:53:26 +02:00

13 lines
211 B
Plaintext

@using WebSharpRSS.Models
<MudDialog>
<DialogContent>
<ItemView FeedItem="Data"/>
</DialogContent>
</MudDialog>
@code {
[Parameter]
public SyndicationItemData? Data { get; set; }
}