14 lines
270 B
C#
14 lines
270 B
C#
|
namespace WheresMyMoney.Maui;
|
|||
|
|
|||
|
public partial class App : Application
|
|||
|
{
|
|||
|
public App()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
protected override Window CreateWindow(IActivationState? activationState)
|
|||
|
{
|
|||
|
return new Window(new AppShell());
|
|||
|
}
|
|||
|
}
|