18 lines
390 B
C#
18 lines
390 B
C#
|
using Microsoft.AspNetCore.Components.Builder;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
|
||
|
namespace Newtonsoft
|
||
|
{
|
||
|
public class Startup
|
||
|
{
|
||
|
public void ConfigureServices(IServiceCollection services)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public void Configure(IComponentsApplicationBuilder app)
|
||
|
{
|
||
|
app.AddComponent<App>("app");
|
||
|
}
|
||
|
}
|
||
|
}
|