generated at
JSX.IntrinsicElements


以下のようにHTML要素の型が列挙されている
ts
interface IntrinsicElements { // HTML a: React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>; ... body: React.DetailedHTMLProps<React.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>; br: React.DetailedHTMLProps<React.HTMLAttributes<HTMLBRElement>, HTMLBRElement>; ... // SVG svg: React.SVGProps<SVGSVGElement>; ... }


例えば、 IntrinsicElements['a'] とすれば、 <a> のpropsの型が得られる