mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 10:09:24 +00:00
15 lines
245 B
C#
15 lines
245 B
C#
namespace Oqtane.Maui;
|
|
|
|
public partial class App : Application
|
|
{
|
|
public App()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override Window CreateWindow(IActivationState activationState)
|
|
{
|
|
return new Window(new MainPage());
|
|
}
|
|
}
|