MCPcopy Create free account
hub / github.com/reactstrap/reactstrap / render

Method render

types/reactstrap-tests.tsx:3417–3443  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3415 }
3416
3417 render() {
3418 return (
3419 <span>
3420 <Button
3421 className="me-1"
3422 color="secondary"
3423 id={'Popover-' + this.props.id}
3424 onClick={this.toggle}
3425 >
3426 {this.props.item.text}
3427 </Button>
3428 <Popover
3429 placement={this.props.item.placement}
3430 isOpen={this.state.popoverOpen}
3431 target={'Popover-' + this.props.id}
3432 toggle={this.toggle}
3433 hideArrow={true}
3434 >
3435 <PopoverHeader>Popover Title</PopoverHeader>
3436 <PopoverBody>
3437 Sed posuere consectetur est at lobortis. Aenean eu leo quam.
3438 Pellentesque ornare sem lacinia quam venenatis vestibulum.
3439 </PopoverBody>
3440 </Popover>
3441 </span>
3442 );
3443 }
3444}
3445
3446class PopoverExampleMulti extends React.Component<

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected