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.
package/dist/index.cjs CHANGED
@@ -3953,11 +3953,12 @@ var Page = function Page(props) {
3953
3953
  _props$layout = props.layout,
3954
3954
  layout = _props$layout === void 0 ? "simple" : _props$layout,
3955
3955
  _props$context = props.context,
3956
- context = _props$context === void 0 ? {} : _props$context;
3956
+ context = _props$context === void 0 ? {} : _props$context,
3957
+ className = props.className;
3957
3958
  return /*#__PURE__*/React__default["default"].createElement(PageProvider, {
3958
3959
  context: context
3959
3960
  }, /*#__PURE__*/React__default["default"].createElement("article", {
3960
- className: "page6 " + layout
3961
+ className: "page6 " + layout + " " + className
3961
3962
  }, children));
3962
3963
  };
3963
3964