import Alert from '../../atoms/Alert' import Button from '../../atoms/Button' import Loader from '../../atoms/Loader' import React, { ReactElement } from 'react' import styles from './Feedback.module.css' import SuccessConfetti from '../../atoms/SuccessConfetti' export default function Feedback({ error, success, did, publishStepText, setError }: { error: string success: string did: string publishStepText: string setError: (error: string) => void }): ReactElement { const SuccessAction = () => ( ) return (