@using EnvelopeGenerator.ReceiverUI.Services;
@inherits LayoutComponentBase
@code {
[Inject] HttpClient Http { get; set; }
List RequiredFonts = new() {
"opensans.ttf"
};
protected async override Task OnInitializedAsync() {
await FontLoader.LoadFonts(Http, RequiredFonts);
await base.OnInitializedAsync();
}
}