refactor(page): update import paths for WorkspaceEditorHeader and WorkspaceEditorFooter

This commit is contained in:
cfngc4594 2025-03-20 15:58:05 +08:00
parent 91d9344bc9
commit ceee810e14

View File

@ -2,8 +2,8 @@ import prisma from "@/lib/prisma";
import { notFound } from "next/navigation";
import { CodeEditor } from "@/components/problem-editor";
import { ProblemEditorProvider } from "@/providers/problem-editor-provider";
import WorkspaceEditorHeader from "@/components/features/playground/workspace/editor/components/header";
import WorkspaceEditorFooter from "@/components/features/playground/workspace/editor/components/footer";
import { WorkspaceEditorHeader } from "@/components/features/playground/workspace/editor/components/header";
import { WorkspaceEditorFooter } from "@/components/features/playground/workspace/editor/components/footer";
interface WorkspaceEditorProps {
params: Promise<{ id: string }>;