diff --git a/src/components/features/playground/problem/description/footer.tsx b/src/components/features/playground/problem/description/footer.tsx deleted file mode 100644 index 0b8b6ca..0000000 --- a/src/components/features/playground/problem/description/footer.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import { cn } from "@/lib/utils"; - -interface ProblemDescriptionFooterProps { - title: string; - className?: string; -} - -export default function ProblemDescriptionFooter({ - title, - className, - ...props -}: ProblemDescriptionFooterProps) { - return ( - - ); -} diff --git a/src/components/features/playground/problem/solution/footer.tsx b/src/components/features/playground/problem/solution/footer.tsx deleted file mode 100644 index 60e6832..0000000 --- a/src/components/features/playground/problem/solution/footer.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import { cn } from "@/lib/utils"; - -interface ProblemSolutionFooterProps { - title: string; - className?: string; -} - -export default function ProblemSolutionFooter({ - title, - className, - ...props -}: ProblemSolutionFooterProps) { - return ( - - ); -} diff --git a/src/components/features/playground/workspace/editor/components/header.tsx b/src/components/features/playground/workspace/editor/components/header.tsx deleted file mode 100644 index 5f465b5..0000000 --- a/src/components/features/playground/workspace/editor/components/header.tsx +++ /dev/null @@ -1,38 +0,0 @@ -import { cn } from "@/lib/utils"; -import { CopyButton } from "./copy-button"; -import { RedoButton } from "./redo-button"; -import { UndoButton } from "./undo-button"; -import { ResetButton } from "./reset-button"; -import { FormatButton } from "./format-button"; -import { LspStatusButton } from "./lsp-status-button"; -import { LanguageSelector } from "./language-selector"; - -interface WorkspaceEditorHeaderProps { - className?: string; -} - -export function WorkspaceEditorHeader({ - className, - ...props -}: WorkspaceEditorHeaderProps) { - return ( -
-
-
- - -
-
- - - - - -
-
-
- ); -}