1
2
3
4
5
6
7
8
9
10
11
12
import { CodeInline } from "mdxts/components";
export function Basic() {
return (
<p>
In React,{' '}
<CodeInline value="<span style={{ color: 'blue' }}>" language="jsx" />{' '}
changes the color of the text to blue.
</p>
)
}
In React, <span style={{ color: 'blue' }}>
changes the color of the text to blue.