Head root component integration in .NET MAUI

This commit is contained in:
sbwalker
2023-06-05 14:50:54 -04:00
parent 10a754642a
commit 3692ec49c1
2 changed files with 7 additions and 0 deletions

6
Oqtane.Maui/Head.razor Normal file
View File

@ -0,0 +1,6 @@
<DynamicComponent Type="@ComponentType"></DynamicComponent>
@code {
Type ComponentType = Type.GetType("Oqtane.Head, Oqtane.Client");
}