import { CopyButton } from "@/components/CopyButton"; import type { Lang } from "shiki"; import shiki from "shiki"; export async function CodeBlock(props: { code: string; lang: Lang }) { const highlighter = await shiki.getHighlighter({ theme: "one-dark-pro", }); return (
{/* max-w-[calc(32rem-1.5rem-1.5rem)] */} {/*
*/}

{/*

*/}
); }