ywana-core8 0.0.802 → 0.0.803

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.
@@ -3945,11 +3945,12 @@ var Page = function Page(props) {
3945
3945
  _props$layout = props.layout,
3946
3946
  layout = _props$layout === void 0 ? "simple" : _props$layout,
3947
3947
  _props$context = props.context,
3948
- context = _props$context === void 0 ? {} : _props$context;
3948
+ context = _props$context === void 0 ? {} : _props$context,
3949
+ className = props.className;
3949
3950
  return /*#__PURE__*/React.createElement(PageProvider, {
3950
3951
  context: context
3951
3952
  }, /*#__PURE__*/React.createElement("article", {
3952
- className: "page6 " + layout
3953
+ className: "page6 " + layout + " " + className
3953
3954
  }, children));
3954
3955
  };
3955
3956