12345678910111213141516171819202122232425262728293031323334 |
- // 从antd导出组件
- export {
- Button,
- Input,
- Select,
- Table,
- Form,
- Layout,
- Menu,
- Pagination,
- Modal,
- notification,
- message,
- DatePicker,
- ConfigProvider,
- Space,
- Typography,
- Spin,
- Card,
- Tabs,
- Popconfirm,
- Drawer,
- Avatar
- } from 'antd';
- // 导出antd样式
- import 'antd/dist/reset.css';
- // 示例:如何在组件中使用共享依赖
- // const React = require('@monorepo/shared/react');
- // const _ = require('@monorepo/shared/lodash');
- // 你可以在这里添加自定义组件
- // export { default as CustomComponent } from './components/CustomComponent';
|