mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
15 lines
303 B
C#
15 lines
303 B
C#
|
|
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;
|
|||
|
|
}
|