我正在为反应创建新库,说明custom-ant-lib
哪些导入antd
并包含对组件等的button
覆盖modal
...
在我的应用程序中,我想使用Row
&Col
之类的组件,它们是antd
库的组件。
我已经导入antd
了custom-ant-lib
. 我已经在我的应用程序中导入custom-ant-lib
。
因此antd
,在我的应用程序中再次导入Row
&Col
会导致冗余和额外的导入。
当前状态:我在我的 JSX 文件中都导入以使用各种antd
组件。custom-ant-lib
预期:我应该能够跳过antd
导入和使用antd
from的组件custom-ant-lib
,我也不想覆盖或更改任何东西Row
,Col
但应该能够导出它们。
蚂蚁文档链接:- https://ant.design/docs/react/introduce
例如当前的 JSX:
import {Row, Col} from 'ant'
import {Button} from 'custom-ant-lib'
预期的 JSX:
import {Row, Col, Button} from 'custom-ant-lib'
有什么方法可以跳过导入antd
间接使用它们custom-ant-lib
吗?