Search
    Preparing search index...

    Интерфейс компонента радиоэлемента, включающий группу и кнопку.

    interface RadioComponentType {
        $$typeof: symbol;
        Button: RadioButtonComponentType;
        defaultProps?: Partial<RadioProps & RefAttributes<HTMLElement>>;
        displayName?: string;
        Group: RadioRadioGroupComponentType;
        propTypes?: WeakValidationMap<RadioProps & RefAttributes<HTMLElement>>;
        (
            props: RadioProps & RefAttributes<HTMLElement>,
        ): null | ReactElement<any, string | JSXElementConstructor<any>>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $$typeof: symbol

    Компонент кнопки радиоэлемента.

    defaultProps?: Partial<RadioProps & RefAttributes<HTMLElement>>
    displayName?: string

    Компонент группы радиоэлементов.

    propTypes?: WeakValidationMap<RadioProps & RefAttributes<HTMLElement>>