Program.cs 423 B

123456789101112131415
  1. // Copyright (c) .NET Foundation. All rights reserved.
  2. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
  3. using Microsoft.AspNetCore.Components.Browser.Rendering;
  4. namespace HostedInAspNet.Client
  5. {
  6. public class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. new BrowserRenderer().AddComponent<Home>("app");
  11. }
  12. }
  13. }