UNPKG

light-toast

Version:

A light-weight react toast component built for mobile web app

8 lines (7 loc) 230 B
import React from 'react'; import { Message, NoArgsReturnVoidFunction } from './types'; interface Props extends Message { onClose: NoArgsReturnVoidFunction; } declare const Toast: React.FC<Props>; export default Toast;