/** * CodeView shows read-only source code with Monaco's syntax highlighting, * lazy-loading Monaco on first use. * * @example * */ import { lazy, Suspense } from "react"; const MonacoViewer = lazy(() => import("./MonacoViewer")); export function CodeView({ content, language, }: { content: string; language: string }) { return ( loading viewer…

}>
); }