• Used to create actions for the PageHeader component. To generate anchor tag provide path property To generate HTML element with event handler provide onClick property (and optionally confirmationMode, confirmationConfig)

    Parameters

    Returns null | ReactElement<any, any>

    Example

    // Action with JS clickHandler
    <PageHeaderAction label={'Action Label'} onClick={clickHandler} />

    // Action with anchor tag
    <PageHeaderAction label={'Action Label'} path={'/action-path'} />

Generated using TypeDoc