2024-05-30 01:06:08 +00:00
|
|
|
<?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"
|
|
|
|
xmlns:local="clr-namespace:Neighbourhood.omg.lol"
|
|
|
|
x:Class="Neighbourhood.omg.lol.MainPage"
|
|
|
|
BackgroundColor="{DynamicResource PageBackgroundColor}">
|
|
|
|
|
2024-05-31 13:16:09 +00:00
|
|
|
<BlazorWebView x:Name="blazorWebView" HostPage="wwwroot/index.html" UrlLoading="BlazorUrlLoading">
|
2024-05-30 01:06:08 +00:00
|
|
|
<BlazorWebView.RootComponents>
|
|
|
|
<RootComponent Selector="#app" ComponentType="{x:Type local:Components.Routes}" />
|
|
|
|
</BlazorWebView.RootComponents>
|
|
|
|
</BlazorWebView>
|
|
|
|
|
|
|
|
</ContentPage>
|