9 lines
170 B
TypeScript
9 lines
170 B
TypeScript
/* eslint-disable unicorn/prefer-export-from */
|
|
import { notification } from 'antd';
|
|
|
|
notification.config({
|
|
placement: 'bottomRight',
|
|
});
|
|
|
|
export default notification;
|