I18NCommander/I18N Commander/UI MAUI/App.xaml.cs

10 lines
179 B
C#
Raw Normal View History

2022-08-06 21:48:23 +00:00
namespace UI_MAUI;
public partial class App : Application
{
public App()
{
this.InitializeComponent();
this.MainPage = new AppShell();
}
}