1 2 3 4 5 6 7 8 9 10 11 12 13
import React from 'react'; import { ParserPropTypes } from './types'; const CodeBlock: React.FC<ParserPropTypes> = ({ rawLines }) => { return ( <p style={{background: '#444444', padding: '8px' }}> {rawLines.map(line => <> {line} <br/> </>)} </p> ); } export default CodeBlock;