summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-24 02:08:19 +1000
committerJake Mannens <jake@asger.xyz>2026-06-11 01:13:32 +1000
commit4c4febc101b73a9c45accdaaf7c532b8115cd599 (patch)
tree6800ec2cefa0c7432cd4a53b9815ca1b438780c8
parent9ae13fa513cd4888cc5f8bd2307f547418f1714d (diff)
Converted _Imports.razor to WASM
-rw-r--r--_Imports.razor18
1 files changed, 12 insertions, 6 deletions
diff --git a/_Imports.razor b/_Imports.razor
index 4c5566b..d28439d 100644
--- a/_Imports.razor
+++ b/_Imports.razor
@@ -1,9 +1,15 @@
-@using HyperBooru
-@using HyperBooru.Pages.Component
-@using HyperBooru.Services
-@using Microsoft.AspNetCore.Authorization
-@using Microsoft.AspNetCore.Components.Authorization
+@using HyperBooru.ApiClient
+@using HyperBooru.ApiModels
+@using HyperBooru.Client
+@using HyperBooru.Client.Layout
+@using HyperBooru.Client.Pages.Component
+@using HyperBooru.Client.Services
+@using HyperBooru.Client.Util
+@using System.Net.Http
+@using System.Net.Http.Json
+@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
-@using Microsoft.EntityFrameworkCore
+@using static Microsoft.AspNetCore.Components.Web.RenderMode
+@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.JSInterop