Extracted some pages to their own assembly and finished the artifact display page code

This commit is contained in:
Vincent Allen
2025-10-08 13:08:12 -04:00
parent fd0e6290fe
commit 02c2660b09
626 changed files with 39989 additions and 1553 deletions

View File

@@ -0,0 +1,16 @@
@namespace OpenArchival.Blazor.FileViewer
@using MudBlazor
@using OpenArchival.DataAccess
@implements IFileViewer;
<MudText Typo="Typo.h2">File unsupported</MudText>
@code {
[Parameter]
public required FilePathListing File { get; set; }
[Parameter]
public EventCallback<int> OnHeightMeasured { get; set; }
}