Files
marechai/Marechai.App/Presentation/Views/Shell.xaml.cs

15 lines
303 B
C#
Raw Normal View History

using Microsoft.UI.Xaml.Controls;
using Uno.Extensions.Hosting;
namespace Marechai.App.Presentation;
public sealed partial class Shell : UserControl, IContentControlProvider
{
public Shell()
{
this.InitializeComponent();
}
public ContentControl ContentControl => Splash;
}