h
function h(
type: "input",
props: (JSXInternal.DOMAttributes<HTMLInputElement> & ClassAttributes<HTMLInputElement>) | null,
...children: ComponentChildren[],
): VNode<any>;function h<P extends JSXInternal.HTMLAttributes<T>, T extends HTMLElement>(
type: keyof JSXInternal.IntrinsicElements,
props: (ClassAttributes<T> & P) | null,
...children: ComponentChildren[],
): VNode<any>;function h<P extends JSXInternal.SVGAttributes<T>, T extends HTMLElement>(
type: keyof JSXInternal.IntrinsicElements,
props: (ClassAttributes<T> & P) | null,
...children: ComponentChildren[],
): VNode<any>;function h<T extends HTMLElement>(
type: string,
props: (ClassAttributes<T> & JSXInternal.HTMLAttributes & JSXInternal.SVGAttributes) | null,
...children: ComponentChildren[],
): VNode<any>;function h<P>(
type: ComponentType<P>,
props: (Attributes & P) | null,
...children: ComponentChildren[],
): VNode<any>;§
h(type: "input", props: (JSXInternal.DOMAttributes<HTMLInputElement> & ClassAttributes<HTMLInputElement>) | null, ...children: ComponentChildren[]): VNode<any>
[src]§Parameters
§
props: (JSXInternal.DOMAttributes<HTMLInputElement> & ClassAttributes<HTMLInputElement>) | null
[src]§
...children: ComponentChildren[] optional
[src]§
h<P extends JSXInternal.HTMLAttributes<T>, T extends HTMLElement>(type: keyof JSXInternal.IntrinsicElements, props: (ClassAttributes<T> & P) | null, ...children: ComponentChildren[]): VNode<any>
[src]§Parameters
§
type: keyof JSXInternal.IntrinsicElements
[src]§
props: (ClassAttributes<T> & P) | null
[src]§
...children: ComponentChildren[] optional
[src]§
h<P extends JSXInternal.SVGAttributes<T>, T extends HTMLElement>(type: keyof JSXInternal.IntrinsicElements, props: (ClassAttributes<T> & P) | null, ...children: ComponentChildren[]): VNode<any>
[src]§Parameters
§
type: keyof JSXInternal.IntrinsicElements
[src]§
props: (ClassAttributes<T> & P) | null
[src]§
...children: ComponentChildren[] optional
[src]§
h<T extends HTMLElement>(type: string, props: (ClassAttributes<T> & JSXInternal.HTMLAttributes & JSXInternal.SVGAttributes) | null, ...children: ComponentChildren[]): VNode<any>
[src]§Parameters
§
props: (ClassAttributes<T> & JSXInternal.HTMLAttributes & JSXInternal.SVGAttributes) | null
[src]§
...children: ComponentChildren[] optional
[src]§
h<P>(type: ComponentType<P>, props: (Attributes & P) | null, ...children: ComponentChildren[]): VNode<any>
[src]§Parameters
§
type: ComponentType<P>
[src]§
props: (Attributes & P) | null
[src]§
...children: ComponentChildren[] optional
[src]