import './CodeBlockStyles.css'; import { JSX } from 'react'; interface ICodeBlockProps { // biome-ignore lint/suspicious/noExplicitAny: we don't care about the type here text?: any; withFormatting?: boolean; } export function CodeBlock({ text, withFormatting = true, }: ICodeBlockProps): JSX.Element | null { const formattedCode = text && withFormatting ? JSON.stringify(text, null, 2) : text; if (text === undefined || text === null) { return null; } return (
{formattedCode}
);
}