import React from 'react'; import { LightAsync as ReactSyntaxHighlighter } from 'react-syntax-highlighter'; import { arduinoLight } from 'react-syntax-highlighter/dist/cjs/styles/hljs'; type Props = { language: string; value: string; }; class SyntaxHighlighter extends React.Component { render() { return ( {this.props.value} ); } } export default SyntaxHighlighter;