ef583813eb
Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
18 lines
390 B
C#
18 lines
390 B
C#
using Microsoft.AspNetCore.Components.Builder;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace HelloWorld
|
|
{
|
|
public class Startup
|
|
{
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
}
|
|
|
|
public void Configure(IComponentsApplicationBuilder app)
|
|
{
|
|
app.AddComponent<App>("app");
|
|
}
|
|
}
|
|
}
|