8 lines
191 B
C#
8 lines
191 B
C#
|
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||
|
|
||
|
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
||
|
|
||
|
builder.Services.AddTelerikBlazor();
|
||
|
|
||
|
await builder.Build().RunAsync();
|