(dialogProps)
| 284 | ); |
| 285 | |
| 286 | const renderDialog = (dialogProps) => ( |
| 287 | <div |
| 288 | {...dialogProps} |
| 289 | {...props} |
| 290 | className={classNames( |
| 291 | className, |
| 292 | responsive ? `${bsPrefix}-${responsive}` : bsPrefix, |
| 293 | `${bsPrefix}-${placement}`, |
| 294 | )} |
| 295 | aria-labelledby={ariaLabelledby} |
| 296 | > |
| 297 | {children} |
| 298 | </div> |
| 299 | ); |
| 300 | |
| 301 | return ( |
| 302 | <> |
no outgoing calls
no test coverage detected
searching dependent graphs…