ywana-core8 0.0.587 → 0.0.588

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -208,7 +208,8 @@ var Accordion = function Accordion(props) {
208
208
  var className = props.className,
209
209
  _props$sections = props.sections,
210
210
  sections = _props$sections === void 0 ? [] : _props$sections,
211
- onCheck = props.onCheck;
211
+ onCheck = props.onCheck,
212
+ children = props.children;
212
213
 
213
214
  var _useState = React.useState([]),
214
215
  openSections = _useState[0],
@@ -260,7 +261,7 @@ var Accordion = function Accordion(props) {
260
261
  onCheck: function onCheck() {
261
262
  return check(index);
262
263
  }
263
- }), section.children);
264
+ }), section.children, children);
264
265
  }));
265
266
  };
266
267
  /**