ant-design-blazor/components/image/ImagePreviewContainer.razor
James Yeung c9656ca227 feat(module: image): add image component (#1038)
* feat(module: image): add image

* add image preview

* add locale
2021-01-25 02:05:18 +08:00

7 lines
133 B
C#

@namespace AntDesign
@inherits AntDomComponentBase
@foreach (string url in _previewList)
{
<ImagePreview ImageUrl="@url" />
}