-
Hi, If I have a component like this: const Error = ({ children }) => {
return <span className={styles.error}>{children}</span>;
}; Is there a way I can use it inside a ``` block? ## Here is an example:
```
<Error>val s =</Error>
```
|
Beta Was this translation helpful? Give feedback.
Answered by
wooorm
Oct 31, 2022
Replies: 1 comment
-
No. MDX is intended to not evaluate code blocks. Similar to how a code block in markdown doesn’t get evaluated. {
1 + 2
} However, everything is possible with plugins: #701 (comment). |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
behrangsa
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No. MDX is intended to not evaluate code blocks. Similar to how a code block in markdown doesn’t get evaluated.
We use expressions:
However, everything is possible with plugins: #701 (comment).