// lazy load this file to keep initial bundle small import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter'; import { vscDarkPlus as style } from 'react-syntax-highlighter/dist/cjs/styles/prism'; import React from 'react'; const CodeSnippet: React.FC<{ code: string; language: string; }> = ({ code, language }) => ( {code} ); export default CodeSnippet;