-
I'm using a few custom elements in my app, like
Since this is not a component I cannot include it in a list of global components, so I'm wondering how to solve this. compilerOptions: {
isCustomElement: (tag) => ['icon'].includes(tag),
} |
Beta Was this translation helpful? Give feedback.
Answered by
znck
Apr 10, 2022
Replies: 1 comment
-
Use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
znck
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use
JSX.IntrinsicElements
to define custom elements.