nocobase/packages/core/utils/src/notification.ts

9 lines
169 B
TypeScript
Raw Normal View History

import { notification } from 'antd';
export const showToast = (message, type = 'info', duration = 5000) => {
notification[type]({
message,
duration,
});
};