Code snippet rendering and interaction library for React.
- 💅 Styling-agnostic (raw CSS, CSS-in-JS, pre-built themes).
- 🎯 Focused lines.
- 💎 Interactive code tokens.
npm install react-cdx
import React from 'react'
import { Code } from 'react-cdx'
export function Example() {
return (
<Code
code={`
function multiply(a, b) {
return a * b
}
`}
/>
)
}