mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-10 07:54:20 +01:00
13 lines
204 B
Plaintext
13 lines
204 B
Plaintext
|
@using WebSharpRSS.Models
|
||
|
|
||
|
<MudDialog>
|
||
|
<DialogContent>
|
||
|
<ItemView FeedItem="Data"/>
|
||
|
</DialogContent>
|
||
|
</MudDialog>
|
||
|
|
||
|
@code {
|
||
|
[Parameter]
|
||
|
public FeedItemData? Data { get; set; }
|
||
|
|
||
|
}
|