@using EnvelopeGenerator.Server.Client.Services; @inherits LayoutComponentBase
@Body
@code { [Inject] IHttpClientFactory HttpClientFactory { get; set; } = default!; List RequiredFonts = new() { "opensans.ttf" }; protected async override Task OnInitializedAsync() { await FontLoader.LoadFonts(HttpClientFactory, RequiredFonts); await base.OnInitializedAsync(); } }