Created sample application with ReactJS and install reactstrap for boostrap. I use dropdown components in application that is working fine. code is
<Dropdown isOpen={this.state.dropdownOpen} toggle={this.toggle}>
<DropdownToggle caret>
Dropdown
</DropdownToggle>
<DropdownMenu>
<DropdownItem>Another Action</DropdownItem>
<DropdownItem>Another Action</DropdownItem>
</DropdownMenu>
</Dropdown>
but i have to change .
Like currently they passing text only
. But
I have to pass 3 things like icon,heading and sub heading
so can I change DropdownItem.js code for this type of customization ?
I have to make dropdown similar to this image http://prntscr.com/f34zoo
Thanks in advance