1
2
3
4
5
6
7
8
9
10
11
12
import { CodeBlock } from './CodeBlock'
export function LineFocusing() {
return (
<CodeBlock
filename="line-focus.ts"
value={`const a = 1;\nconst b = 2;\n\nconst add = a + b\nconst subtract = a - b`}
focusedLines="2, 4"
/>
)
}