'use client'; import { PrismAsyncLight } from 'react-syntax-highlighter'; import { vscDarkPlus, prism } from 'react-syntax-highlighter/dist/cjs/styles/prism'; export function SyntaxHighlighter({ language = 'typescript', code }: { code: string; language?: string }) { return ( <>
{code}
{code}
); }