Next.js / components /CodeBlock.js
memex-in's picture
Create components/CodeBlock.js
429cdc2 verified
raw
history blame contribute delete
360 Bytes
import { Light as SyntaxHighlighter } from 'react-syntax-highlighter';
import { vs2015 } from 'react-syntax-highlighter/dist/cjs/styles/hljs'; // Or any other style you like
export default function CodeBlock({ code, language = 'javascript' }) {
return (
<SyntaxHighlighter language={language} style={vs2015}>
{code}
</SyntaxHighlighter>
);
}