Radzen und ein bisschen UI

This commit is contained in:
Simon Lübeß
2023-08-02 21:33:09 +02:00
parent 4875b590a5
commit e9b9275999
6 changed files with 205 additions and 22 deletions

View File

@ -1,6 +1,7 @@
using KIKunstKirstenKlöckner.Data;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Web;
using Radzen;
var builder = WebApplication.CreateBuilder(args);
@ -8,6 +9,9 @@ var builder = WebApplication.CreateBuilder(args);
builder.Services.AddRazorPages();
builder.Services.AddServerSideBlazor();
builder.Services.AddSingleton<WeatherForecastService>();
builder.Services.AddScoped<TooltipService>();
builder.Services.AddScoped<DialogService>();
builder.Services.AddScoped<NotificationService>();
var app = builder.Build();