@regenbio/regenbio-components-react 1.3.58 → 1.3.59

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.
@@ -36,4 +36,10 @@ export type RbAppLayoutProps = {
36
36
  * 全局状态
37
37
  */
38
38
  globalState: RbGlobalStateType;
39
+ /**
40
+ * 子节点渲染方法
41
+ * @param children 子节点
42
+ * @param footer 版权信息等展示的底部
43
+ */
44
+ childrenRender?: (children: React.ReactNode | React.ReactNode[], footer: React.ReactNode | React.ReactNode[]) => React.ReactNode | React.ReactNode[];
39
45
  };