ant-design-vue/components/vc-notification/index.ts
Cherry7 6eb4d8f5c5
Feat(use): add useMessage useNotification (#6527)
* feat(Message): add useMessage hook

* feat(Notification): add useNotification hook

* feat(Message): add Hook demo

* feat(Notification): add Hook demo

* test(Message): update demo snap

* test(Notification): update demo snap

* docs(Message): update docs with FAQ

* docs(Notification): update docs with FAQ
2023-05-05 09:59:57 +08:00

6 lines
224 B
TypeScript

import Notification from './Notification';
import useNotification from './useNotification';
import type { NotificationAPI } from './useNotification';
export { useNotification, NotificationAPI };
export default Notification;