index.js 597 B

12345678910111213141516171819202122232425262728293031323334
  1. // 从antd导出组件
  2. export {
  3. Button,
  4. Input,
  5. Select,
  6. Table,
  7. Form,
  8. Layout,
  9. Menu,
  10. Pagination,
  11. Modal,
  12. notification,
  13. message,
  14. DatePicker,
  15. ConfigProvider,
  16. Space,
  17. Typography,
  18. Spin,
  19. Card,
  20. Tabs,
  21. Popconfirm,
  22. Drawer,
  23. Avatar
  24. } from 'antd';
  25. // 导出antd样式
  26. import 'antd/dist/reset.css';
  27. // 示例:如何在组件中使用共享依赖
  28. // const React = require('@monorepo/shared/react');
  29. // const _ = require('@monorepo/shared/lodash');
  30. // 你可以在这里添加自定义组件
  31. // export { default as CustomComponent } from './components/CustomComponent';