mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-15 09:14:08 +00:00
14 lines
392 B
TypeScript
14 lines
392 B
TypeScript
import TextCopyBlock from "@/lib/TextCopyBlock";
|
|
import { Script } from "@/lib/types";
|
|
|
|
export default function Description({ item }: { item: Script }) {
|
|
return (
|
|
<div className="p-2">
|
|
<h2 className="mb-2 max-w-prose text-lg font-semibold">Description</h2>
|
|
<p className="text-sm text-muted-foreground">
|
|
{TextCopyBlock(item.description)}
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|