{children};
const highlightedLines = highlight ? highlight.split(',').map(Number) : [];
// https://mdxjs.com/guides/syntax-highlighting#all-together
const language = className.replace(/language-/, '');
return (
{tokens.map((line, i) => (
{line.map((token, key) => (
))}
))}
)}