update routing

This commit is contained in:
yzned
2025-07-20 18:09:45 +03:00
committed by yzned
parent 42b27b7ddc
commit bba27be7e2
10 changed files with 229 additions and 145 deletions

View File

@@ -0,0 +1,16 @@
import { Chat } from "@/components/interaction-panel/chat";
import { Sandbox } from "@/components/interaction-panel/sandbox";
import { createFileRoute } from "@tanstack/react-router";
export const Route = createFileRoute("/interaction-panel/$id")({
component: RouteComponent,
});
function RouteComponent() {
return (
<div className="flex h-full">
<Chat />
<Sandbox />
</div>
);
}