judge4c-demo/src/components/snippet-show-form.tsx

23 lines
454 B
TypeScript

"use client";
import { Snippet } from "@prisma/client";
import { Editor } from "@monaco-editor/react";
interface SnippetShowFormProps {
snippet: Snippet;
}
export default function SnippetShowForm({ snippet }: SnippetShowFormProps) {
return (
<div>
<Editor
height="75vh"
theme="vs-light"
language="c"
defaultValue={snippet.code}
options={{ minimap: { enabled: false } }}
/>
</div>
);
}