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

Method render

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

Source from the content-addressed store, hash-verified

518 }
519
520 render() {
521 return (
522 <ButtonDropdown isOpen={this.state.dropdownOpen} toggle={this.toggle}>
523 <DropdownToggle caret>Button Dropdown</DropdownToggle>
524 <DropdownMenu>
525 <DropdownItem header>Header</DropdownItem>
526 <DropdownItem disabled>Action</DropdownItem>
527 <DropdownItem>Another Action</DropdownItem>
528 <DropdownItem divider />
529 <DropdownItem
530 onClick={(event: React.MouseEvent<HTMLElement>) => {
531 // something happens here
532 }}
533 >
534 Another Action
535 </DropdownItem>
536 </DropdownMenu>
537 </ButtonDropdown>
538 );
539 }
540}
541
542const Example16 = (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected