_Host.cshtml
1 @page "/" 2 @namespace PingUp.Pages 3 @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 5 <!DOCTYPE html> 6 <html lang="en"> 7 <head> 8 <meta charset="utf-8" /> 9 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 10 <title>PingUp</title> 11 <base href="~/" /> 12 <link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" /> 13 <link href="css/site.css" rel="stylesheet" /> 14 </head> 15 <body> 16 <app>@(await Html.RenderComponentAsync<App>())</app> 17 18 <script src="_framework/blazor.server.js"></script> 19 </body> 20 </html>