We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2dec8f commit 624d59bCopy full SHA for 624d59b
src/components/AccordionItem.tsx
@@ -41,7 +41,11 @@ export default class AccordionItem extends React.Component<Props> {
41
};
42
43
render(): JSX.Element {
44
- const { uuid = this.instanceUuid, dangerouslySetExpanded } = this.props;
+ const {
45
+ uuid = this.instanceUuid,
46
+ dangerouslySetExpanded,
47
+ ...rest
48
+ } = this.props;
49
50
if (rest.id) {
51
assertValidHtmlId(rest.id);
0 commit comments