UNPKG

react-poptart

Version:

A simple and elegant notification toaster for React.js

10 lines (9 loc) 286 B
import React from 'react'; import { I_PoptartConfig, I_AlertProps } from './types'; interface Props { config: I_PoptartConfig; currentAlert: I_AlertProps | null; dismissAlert: () => void; } export default function AlertContainer(props: Props): React.JSX.Element; export {};