Files
WeatherApp_MAUI/Weather/App.xaml.cs
T
2024-04-04 23:32:46 +02:00

13 lines
196 B
C#

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