Skip to content

@serenity-is/domwise / FunctionComponent

Type Alias: FunctionComponent()<P, T>

FunctionComponent<P, T> = (props) => T | null

Defined in: types/components.d.ts:35

A function-based JSX component that receives props (including children) and returns a JSXElement or null.

Type Parameters

P

P = { }

The type of the component's props.

T

T extends Node = JSXElement

The type of the DOM node the component renders.

Parameters

props

P & object

Returns

T | null