mirror of
https://litchi.icu/ngc2207/judge4c-demo.git
synced 2025-05-19 06:37:42 +00:00
12 lines
270 B
TypeScript
12 lines
270 B
TypeScript
|
"use client";
|
||
|
|
||
|
import { Snippet } from "@prisma/client";
|
||
|
|
||
|
interface SnippetEditFormProps {
|
||
|
snippet: Snippet;
|
||
|
}
|
||
|
|
||
|
export default function SnippetEditForm({ snippet }: SnippetEditFormProps) {
|
||
|
return <div>Client component has snippet with title {snippet.title}</div>;
|
||
|
}
|