Program.cs 343 B

12345678910
  1. using Microsoft.AspNetCore.Components.Web;
  2. using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
  3. using FNZCM.BlazorWasm.UI;
  4. using FNZCM.BlazorWasm;
  5. var builder = WebAssemblyHostBuilder.CreateDefault(args);
  6. builder.RootComponents.Add<App>("#app");
  7. builder.RootComponents.Add<HeadOutlet>("head::after");
  8. await builder.Build().RunAsync();