import React from 'react'; import { Button } from '../../buttons/Button/Button'; import ToastContainer from './ToastContainer'; import toast from '../Toast/Toast'; import { TextButton } from '../../buttons/TextButton/TextButton'; import { AnnouncementIcon } from '../../icons/Icons'; const ToastContainerExample = () => { const showSuccessToast = () => toast({ content: 'Site pushed to Flywheel!' }); const showErrorToast = () => toast({ pauseOnFocusLoss: true, content: 'Site import failed.', type: 'error' }); const showCTAToast = () => toast({ role: 'status', content: (