BlazorReorder/BlazorReorderExample/Program.cs

16 lines
609 B
C#
Raw Normal View History

2022-04-05 20:48:08 +02:00
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using BlazorReorderExample;
using BlazorReorderList;
2022-04-05 20:48:08 +02:00
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("#app");
builder.RootComponents.Add<HeadOutlet>("head::after");
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
builder.Services.AddScoped<IReorderService<ListItem>, ReorderService<ListItem>>();
2022-04-05 20:48:08 +02:00
await builder.Build().RunAsync();
public record ListItem(string title, string url, string details);