clear code
This commit is contained in:
parent
c7887d2ee8
commit
6aea6c93d3
|
@ -15,17 +15,15 @@ const customStyle = {
|
||||||
}
|
}
|
||||||
const SyntaxHighlighterBox = ({ rows }: SyntaxHighlighterBoxProps) => {
|
const SyntaxHighlighterBox = ({ rows }: SyntaxHighlighterBoxProps) => {
|
||||||
return (
|
return (
|
||||||
<YStack>
|
<SyntaxHighlighter
|
||||||
<SyntaxHighlighter
|
language="bash"
|
||||||
language="bash"
|
showLineNumbers={true}
|
||||||
showLineNumbers={true}
|
lineNumberStyle={{ backgroundColor: '#E7EAEE' }}
|
||||||
lineNumberStyle={{ backgroundColor: '#E7EAEE' }}
|
lineNumberContainerStyle={{ color: 'black' }}
|
||||||
lineNumberContainerStyle={{color:'black'}}
|
|
||||||
customStyle={customStyle}
|
customStyle={customStyle}
|
||||||
>
|
>
|
||||||
{`${rows.join('\n')}`}
|
{`${rows.join('\n')}`}
|
||||||
</SyntaxHighlighter>
|
</SyntaxHighlighter>
|
||||||
</YStack>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
export default SyntaxHighlighterBox
|
export default SyntaxHighlighterBox
|
||||||
|
|
Loading…
Reference in New Issue