{tokens.slice(0, -1).map((line, i) => {
const lineProps = getLineProps({ line, key: i });
return (
{showLines && (
{i + 1}
)}
{line.map((token, key) => (
))}
);
})}