UNPKG

toasty-reactx

Version:

A lightweight, customizable toast notification system for React applications.

9 lines (8 loc) 218 B
import React from "react"; import { Toast as ToastType } from "../types"; interface ToastProps { toast: ToastType; onRemove: (id: string) => void; } export declare const Toast: React.FC<ToastProps>; export {};