Merge pull request #28 from offendingcommit/feat/dialectic-playground

feat(web): add dialectic reasoning playground
This commit is contained in:
Offending Commit
2026-05-28 14:26:39 -05:00
committed by GitHub
10 changed files with 644 additions and 16 deletions

View File

@@ -0,0 +1,6 @@
import { createFileRoute } from "@tanstack/react-router";
import { DialecticPlayground } from "@/components/playground/DialecticPlayground";
export const Route = createFileRoute("/workspaces_/$workspaceId_/peers_/$peerId_/playground")({
component: DialecticPlayground,
});