MobileApp/App.xaml.cs
2025-03-05 09:08:58 +03:00

13 lines
198 B
C#

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