From 21b9b090f9efb900a24f94d9478b4ce6ffa49f4a Mon Sep 17 00:00:00 2001 From: sbwalker Date: Fri, 2 Feb 2024 10:38:16 -0500 Subject: [PATCH] move root UI components to UI namespace --- Oqtane.Client/{ => UI}/Head.razor | 1 + Oqtane.Client/{ => UI}/Routes.razor | 1 + 2 files changed, 2 insertions(+) rename Oqtane.Client/{ => UI}/Head.razor (98%) rename Oqtane.Client/{ => UI}/Routes.razor (99%) diff --git a/Oqtane.Client/Head.razor b/Oqtane.Client/UI/Head.razor similarity index 98% rename from Oqtane.Client/Head.razor rename to Oqtane.Client/UI/Head.razor index 88f5c6a7..75a6101f 100644 --- a/Oqtane.Client/Head.razor +++ b/Oqtane.Client/UI/Head.razor @@ -1,3 +1,4 @@ +@namespace Oqtane.UI @using System.ComponentModel @using Oqtane.Shared @inject SiteState SiteState diff --git a/Oqtane.Client/Routes.razor b/Oqtane.Client/UI/Routes.razor similarity index 99% rename from Oqtane.Client/Routes.razor rename to Oqtane.Client/UI/Routes.razor index 932b957e..954e1698 100644 --- a/Oqtane.Client/Routes.razor +++ b/Oqtane.Client/UI/Routes.razor @@ -1,3 +1,4 @@ +@namespace Oqtane.UI @using Microsoft.AspNetCore.Http @inject IInstallationService InstallationService @inject IJSRuntime JSRuntime