Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Created May 11, 2019 17:26
Show Gist options
  • Save samueleresca/ff49af4002c0555a366f1f552ac29016 to your computer and use it in GitHub Desktop.
Save samueleresca/ff49af4002c0555a366f1f552ac29016 to your computer and use it in GitHub Desktop.
using Microsoft.AspNetCore.Components.Builder;
using Microsoft.Extensions.DependencyInjection;
namespace HandsOn.WebAssemblyUsingBlazor
{
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
}
public void Configure(IComponentsApplicationBuilder app)
{
app.AddComponent<App>("app");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment