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)
path
onClick
confirmationMode
confirmationConfig
Optional
// Action with JS clickHandler<PageHeaderAction label={'Action Label'} onClick={clickHandler} />// Action with anchor tag<PageHeaderAction label={'Action Label'} path={'/action-path'} /> Copy
// Action with JS clickHandler<PageHeaderAction label={'Action Label'} onClick={clickHandler} />// Action with anchor tag<PageHeaderAction label={'Action Label'} path={'/action-path'} />
Generated using TypeDoc
Used to create actions for the PageHeader component. To generate anchor tag provide
path
property To generate HTML element with event handler provideonClick
property (and optionallyconfirmationMode
,confirmationConfig
)