Search
    Preparing search index...
    interface FunctionComponent<P = {}> {
        contextTypes?: ValidationMap<any>;
        defaultProps?: Partial<P>;
        displayName?: string;
        propTypes?: WeakValidationMap<P>;
        (props: PropsWithChildren<P>, context?: any): null | ReactElement<any, any>;
    }

    Type Parameters

    • P = {}
    Index

    Properties

    contextTypes?: ValidationMap<any>
    defaultProps?: Partial<P>
    displayName?: string
    propTypes?: WeakValidationMap<P>