diff --git a/src/components/snippet-edit-form.tsx b/src/components/snippet-edit-form.tsx index b6ac561..304ca20 100644 --- a/src/components/snippet-edit-form.tsx +++ b/src/components/snippet-edit-form.tsx @@ -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
Client component has snippet with title {snippet.title}
; + return ( +
+ +
+ ); }