Add basic vnc test

This commit is contained in:
Owen
2026-05-11 21:01:23 -07:00
parent 1d1f7cecf4
commit 09779aca3e
5 changed files with 291 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import VncClient from "./VncClient";
export const dynamic = "force-dynamic";
export const metadata = {
title: "VNC Test"
};
export default function VncPage() {
return <VncClient />;
}