We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e01414 commit 0682f97Copy full SHA for 0682f97
lib/components.d.ts
@@ -48,8 +48,9 @@ export type Component<ComponentProps> =
48
*
49
* You can access props at `JSX.IntrinsicElements`.
50
* For example, to find props for `a`, use `JSX.IntrinsicElements['a']`.
51
-
52
*/
+// Note: this type has to be in `.ts` or `.d.ts`, otherwise TSC hardcodes
53
+// react into the `.d.ts` file.
54
export type Components = {
55
[TagName in keyof JSX.IntrinsicElements]:
56
| Component<JSX.IntrinsicElements[TagName]>
0 commit comments