UNPKG

react-js-plugins

Version:

A powerful and efficient React utility library designed to enhance application performance by streamlining and simplifying the management of complex asynchronous operations.

9 lines (8 loc) 174 B
import { FC } from 'react'; interface PropsType { type: string; msg: string; duration?: number; } declare const Snackbar: FC<PropsType>; export default Snackbar;