Is there any option to display uncontrolled collapse as opened?
Here is the default code for uncontrolled collapse, it is shown as collapsed tab.
<Button color="primary" id="toggler">
Toggle
</Button>
<UncontrolledCollapse toggler="#toggler">
<Card>
<CardBody>
Lorem ipsum dolor sit amet consectetur adipisicing...
</CardBody>
</Card>
</UncontrolledCollapse>
CodePudding user response:
Yes, just add:
<UncontrolledCollapse toggler="#toggler" defaultOpen={true}>
...
</UncontrolledCollapse>