Web-Development-with-Blazor.../Chapter18/MauiDemo/NETMauiApp/App.xaml.cs
2023-02-17 15:28:17 +01:00

12 lines
198 B
C#

namespace NETMauiApp
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new AppShell();
}
}
}