Created
May 11, 2019 17:26
-
-
Save samueleresca/ff49af4002c0555a366f1f552ac29016 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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