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

14 lines
303 B
C#
Raw Normal View History

using Microsoft.UI.Xaml.Controls;
using Uno.Extensions.Hosting;
2025-11-15 02:46:54 +00:00
namespace Marechai.App.Presentation.Views;
public sealed partial class Shell : UserControl, IContentControlProvider
{
public Shell()
{
2025-11-15 02:46:54 +00:00
InitializeComponent();
}
public ContentControl ContentControl => Splash;
2025-11-15 02:46:54 +00:00
}