UNPKG

easemob-chat-uikit

Version:

![Static Badge](https://img.shields.io/badge/platform-React-green) ![Static Badge](https://img.shields.io/badge/language-typescript-green) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/easemob/Easemob-UIKit-web) ![GitHub last c

11 lines (10 loc) 391 B
import React from 'react'; import { NotificationProps, NotificationItemProps } from './interface'; interface NotificationContainerProps extends NotificationProps { notifications: (NotificationItemProps & { id: string; })[]; onRemove: (id: string) => void; } declare const NotificationContainer: React.FC<NotificationContainerProps>; export default NotificationContainer;