import type { ReactElement } from 'react' import SyntaxHighlighter from 'react-syntax-highlighter' interface Props { code: string language: string showLineNumbers?: boolean } const CodeBlock = (props: Props): ReactElement => { return (
{props.code}
) } export default CodeBlock