Files
BimAI/Bimix.UI.Mobile/App.xaml.cs

11 lines
193 B
C#
Raw Normal View History

namespace Bimix.UI.Mobile;
public partial class App : Microsoft.Maui.Controls.Application
{
public App()
{
InitializeComponent();
MainPage = new MainPage();
}
}