interface HeaderComponentType {
    new HeaderComponentTypenew (props: HeaderProps, context?: any): Component<HeaderProps, any, any>;
    Button: HeaderButtonComponentType;
    childContextTypes?: ValidationMap<any>;
    contextType?: Context<any>;
    contextTypes?: ValidationMap<any>;
    defaultProps?: Partial<HeaderProps>;
    displayName?: string;
    Divider: HeaderDividerComponentType;
    getDerivedStateFromError?: GetDerivedStateFromError<HeaderProps, any>;
    getDerivedStateFromProps?: GetDerivedStateFromProps<HeaderProps, any>;
    Logo: HeaderLogoComponentType;
    propTypes?: WeakValidationMap<HeaderProps>;
}

Hierarchy (view full)

Constructors

Properties

childContextTypes?: ValidationMap<any>
contextType?: Context<any>
contextTypes?: ValidationMap<any>
defaultProps?: Partial<HeaderProps>
displayName?: string
getDerivedStateFromError?: GetDerivedStateFromError<HeaderProps, any>
getDerivedStateFromProps?: GetDerivedStateFromProps<HeaderProps, any>