feat: 在代码片段编辑表单中添加 Monaco Editor 组件

This commit is contained in:
ngc2207 2024-11-12 16:06:43 +08:00
parent 33a67a4763
commit 0d8974b9f3

View File

@ -1,11 +1,22 @@
"use client";
import { Snippet } from "@prisma/client";
import { Editor } from "@monaco-editor/react";
interface SnippetEditFormProps {
snippet: Snippet;
}
export default function SnippetEditForm({ snippet }: SnippetEditFormProps) {
return <div>Client component has snippet with title {snippet.title}</div>;
return (
<div>
<Editor
height="40vh"
theme="vs-light"
language="c"
defaultValue={snippet.code}
options={{ minimap: { enabled: false } }}
/>
</div>
);
}