react-simple-toasts
Version:
Instant, lightweight toast notifications for React. No providers or containers needed.
9 lines (8 loc) • 308 B
TypeScript
import React from 'react';
import { ToastComponent } from '../type/common';
export interface ToastContainerProps {
toastComponentList: ToastComponent[];
onToastEnter: () => void;
}
declare function ToastContainer(props: ToastContainerProps): React.JSX.Element;
export default ToastContainer;