Advertisement
Guest User

Untitled

a guest
May 21st, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. using Microsoft.AspNetCore.Components.Builder;
  2. using Microsoft.Extensions.DependencyInjection;
  3.  
  4. namespace HandsOn.WebAssemblyUsingBlazor
  5. {
  6. public class Startup
  7. {
  8. public void ConfigureServices(IServiceCollection services)
  9. {
  10. }
  11.  
  12. public void Configure(IComponentsApplicationBuilder app)
  13. {
  14. app.AddComponent<App>("app");
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement