UNPKG

ndd-react

Version:

A lightweight, customizable toast notification library for React applications

8 lines (7 loc) 220 B
import React from 'react'; import { Toast as ToastType } from './ToastContext'; interface ToastProps extends ToastType { onRemove: (id: string) => void; } export declare const Toast: React.FC<ToastProps>; export {};