diff --git a/src/app/(app)/playground/@workspace/@editor/page.tsx b/src/app/(app)/playground/@workspace/@editor/page.tsx index 453b337..d863301 100644 --- a/src/app/(app)/playground/@workspace/@editor/page.tsx +++ b/src/app/(app)/playground/@workspace/@editor/page.tsx @@ -1,5 +1,6 @@ -import CodeEditor from "@/components/code-editor"; +// import CodeEditor from "@/components/code-editor"; export default function WorkspaceEditorPage() { - return ; + // return ; + return null; } diff --git a/src/app/(app)/playground/page.tsx b/src/app/(app)/playground/page.tsx new file mode 100644 index 0000000..a3f4217 --- /dev/null +++ b/src/app/(app)/playground/page.tsx @@ -0,0 +1,5 @@ +import { redirect } from "next/navigation"; + +export default function PlaygroundPage() { + redirect("/problemset"); +}