10 lines
179 B
C#
10 lines
179 B
C#
namespace UI_MAUI;
|
|
|
|
public partial class App : Application
|
|
{
|
|
public App()
|
|
{
|
|
this.InitializeComponent();
|
|
this.MainPage = new AppShell();
|
|
}
|
|
} |