2023-05-16 13:42:46 +03:00

36 lines
679 B
TypeScript

import { message, notification } from 'antd';
message.config({
maxCount: 3,
top: 70,
});
notification.config({
placement: 'bottomRight',
});
export * from './Button';
export * from './Checkbox';
export { default as AntdConfig } from './Config';
export * from './Input';
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 * from './Switch';
export { default as Text } from './Text';
export {
Alert,
Badge,
Divider,
Form,
InputNumber,
message,
notification,
Result,
Table,
Tabs,
Tag,
Tooltip,
} from 'antd';