35 lines
793 B
TypeScript
35 lines
793 B
TypeScript
import { message, notification } from 'antd';
|
|
|
|
message.config({
|
|
maxCount: 3,
|
|
top: 70,
|
|
});
|
|
|
|
notification.config({
|
|
placement: 'bottomRight',
|
|
});
|
|
|
|
export { default as Button } from './Button';
|
|
export { default as Checkbox } from './Checkbox';
|
|
export { default as AntdConfig } from './Config';
|
|
export { default as Input } from './Input';
|
|
export { default as InputNumber } from './InputNumber';
|
|
export { default as Link } from './Link';
|
|
export { default as Radio } from './Radio';
|
|
export { default as Segmented } from './Segmented';
|
|
export { default as Select } from './Select';
|
|
export { default as Switch } from './Switch';
|
|
export { default as Text } from './Text';
|
|
export {
|
|
Alert,
|
|
Badge,
|
|
Divider,
|
|
message,
|
|
notification,
|
|
Result,
|
|
Table,
|
|
Tabs,
|
|
Tag,
|
|
Tooltip,
|
|
} from 'antd';
|