From 8f9d69b698c5c8e7cf7c952975680faac4c76bc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8C=E8=B4=A7=E6=9C=BA=E5=99=A8=E4=BA=BA?= Date: Wed, 6 May 2026 14:48:35 +0800 Subject: [PATCH] export NotificationList --- src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 3df7228..8bd5e67 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,10 +3,11 @@ import type { NotificationAPI, NotificationConfig } from './hooks/useNotificatio import NotificationProvider from './NotificationProvider'; import Progress from './Progress'; import Notification from './Notification'; +import NotificationList from './NotificationList'; import type { ComponentsType, NotificationProps } from './Notification'; import type { NotificationProgressProps } from './Progress'; -export { useNotification, NotificationProvider, Progress, Notification }; +export { useNotification, NotificationProvider, Progress, Notification, NotificationList }; export type { NotificationAPI, NotificationConfig,