import { FunctionComponent } from 'react' import { useStore } from '@nanostores/react' import { toastStore } from './toastStore' import { ToastTimer } from './ToastTimer' export const ToastContainer: FunctionComponent = () => { const toasts = useStore(toastStore) if (!toasts.length) { return null } return (