@salvoravida/reapop
Version:
A simple & customizable notifications system for React
12 lines (11 loc) • 471 B
TypeScript
/// <reference types="react" />
import { Notification as NotificationType, Position } from '../reducers/notifications/types';
import { DismissNotification } from './NotificationsSystem';
declare type Props = {
notifications: NotificationType[];
position: Position;
dismissNotification: DismissNotification;
singleContainer: boolean;
};
declare const NotificationsContainer: (props: Props) => JSX.Element;
export default NotificationsContainer;