mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 15:26:36 +00:00
chore(components): move features to components/features
Some checks failed
Build & Push Monaco Docker Image / build-and-push-monaco-docker-image (., Dockerfile, monaco-editor-lsp-next) (push) Failing after 1s
Some checks failed
Build & Push Monaco Docker Image / build-and-push-monaco-docker-image (., Dockerfile, monaco-editor-lsp-next) (push) Failing after 1s
This commit is contained in:
parent
db4bc0dc73
commit
d1188f5ea6
@ -2,7 +2,7 @@ import prisma from "@/lib/prisma";
|
||||
import { notFound } from "next/navigation";
|
||||
import { MdxRenderer } from "@/components/content/mdx-renderer";
|
||||
import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area";
|
||||
import ProblemDescriptionFooter from "@/features/playground/problem/description/footer";
|
||||
import ProblemDescriptionFooter from "@/components/features/playground/problem/description/footer";
|
||||
|
||||
interface ProblemDescriptionPageProps {
|
||||
params: Promise<{ id: string }>
|
||||
|
@ -2,7 +2,7 @@ import prisma from "@/lib/prisma";
|
||||
import { notFound } from "next/navigation";
|
||||
import { MdxRenderer } from "@/components/content/mdx-renderer";
|
||||
import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area";
|
||||
import ProblemSolutionFooter from "@/features/playground/problem/solution/footer";
|
||||
import ProblemSolutionFooter from "@/components/features/playground/problem/solution/footer";
|
||||
|
||||
interface ProblemSolutionPageProps {
|
||||
params: Promise<{ id: string }>;
|
||||
|
@ -1,7 +1,7 @@
|
||||
import prisma from "@/lib/prisma";
|
||||
import CodeEditor from "@/components/code-editor";
|
||||
import WorkspaceEditorHeader from "@/features/playground/workspace/editor/header";
|
||||
import WorkspaceEditorFooter from "@/features/playground/workspace/editor/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 }>
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { PlaygroundHeader } from "@/features/playground/header";
|
||||
import { PlaygroundHeader } from "@/components/features/playground/header";
|
||||
import { ResizableHandle, ResizablePanel, ResizablePanelGroup } from "@/components/ui/resizable";
|
||||
|
||||
interface PlaygroundLayoutProps {
|
||||
|
@ -1,11 +1,11 @@
|
||||
import { cn } from "@/lib/utils";
|
||||
import { EditorLanguage } from "@prisma/client";
|
||||
import CopyButton from "./components/copy-button";
|
||||
import RedoButton from "./components/redo-button";
|
||||
import UndoButton from "./components/undo-button";
|
||||
import ResetButton from "./components/reset-button";
|
||||
import FormatButton from "./components/format-button";
|
||||
import LanguageSelector from "./components/language-selector";
|
||||
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 LanguageSelector from "./language-selector";
|
||||
|
||||
interface WorkspaceEditorHeaderProps {
|
||||
templates: { language: EditorLanguage; template: string }[];
|
Loading…
Reference in New Issue
Block a user