{tokens.map((line, i) => {
const lineProps = getLineProps({line, key: i});
if (highlightLines.includes(i + 1)) {
lineProps.className = `${lineProps.className} highlight-line`;
}
return (
{line.map((token, key) => (
))}
);
})}