11 lines
166 B
C#
11 lines
166 B
C#
|
|
namespace OpenMauiXamlApp;
|
||
|
|
|
||
|
|
public partial class App : Application
|
||
|
|
{
|
||
|
|
public App()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
MainPage = new MainPage();
|
||
|
|
}
|
||
|
|
}
|