Skip to content

Commit 978ab10

Browse files
committed
export NotificationList
1 parent 194d592 commit 978ab10

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

src/index.ts

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,29 @@ import type { NotificationAPI, NotificationConfig } from './hooks/useNotificatio
33
import NotificationProvider from './NotificationProvider';
44
import Progress from './Progress';
55
import Notification from './Notification';
6+
import NotificationList from './NotificationList';
67
import type { ComponentsType, NotificationProps } from './Notification';
8+
import type {
9+
NotificationListConfig,
10+
NotificationListProps,
11+
NotificationClassNames as NotificationListClassNames,
12+
NotificationStyles as NotificationListStyles,
13+
Placement,
14+
StackConfig,
15+
} from './NotificationList';
716
import type { NotificationProgressProps } from './Progress';
817

9-
export { useNotification, NotificationProvider, Progress, Notification };
18+
export { useNotification, NotificationProvider, Progress, Notification, NotificationList };
1019
export type {
1120
NotificationAPI,
1221
NotificationConfig,
1322
ComponentsType,
1423
NotificationProps,
24+
NotificationListConfig,
25+
NotificationListProps,
26+
NotificationListClassNames,
27+
NotificationListStyles,
28+
Placement,
29+
StackConfig,
1530
NotificationProgressProps,
1631
};

0 commit comments

Comments
 (0)