UNPKG

react-high-toast

Version:

A highly customizable toast notification system for React using portals

9 lines (8 loc) 257 B
import React from 'react'; import { IToast } from '../types'; interface ToastContainerProps { toasts: IToast[]; removeToast: (id: string) => void; } declare const ToastContainer: React.FC<ToastContainerProps>; export default ToastContainer;