Files
BimAI/BimAI.UI.Mobile/MainPage.xaml

14 lines
626 B
Plaintext
Raw Permalink Normal View History

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
2025-06-23 15:53:46 +02:00
xmlns:shared="clr-namespace:Bimix.UI.Shared.Components;assembly=Bimix.UI.Shared"
x:Class="Bimix.UI.Mobile.MainPage"
Title="Bimix CRM">
2025-06-23 15:53:46 +02:00
<BlazorWebView x:Name="BlazorWebView" HostPage="wwwroot/index.html">
<BlazorWebView.RootComponents>
2025-06-23 15:53:46 +02:00
<RootComponent Selector="#app" ComponentType="{x:Type shared:Routes}" />
</BlazorWebView.RootComponents>
</BlazorWebView>
2025-06-23 15:53:46 +02:00
</ContentPage>