| 1 |
import { Snackbar } from '@wordpress/components' |
| 2 |
import { __ } from '@wordpress/i18n' |
| 3 |
|
| 4 |
export const RetryNotice = () => { |
| 5 |
return ( |
| 6 |
<div className="extendify-onboarding w-full fixed bottom-4 px-4 flex justify-end z-max"> |
| 7 |
<div className="shadow-2xl"> |
| 8 |
<Snackbar> |
| 9 |
{__( |
| 10 |
'Just a moment, this is taking longer than expected.', |
| 11 |
'extendify', |
| 12 |
)} |
| 13 |
</Snackbar> |
| 14 |
</div> |
| 15 |
</div> |
| 16 |
) |
| 17 |
} |
| 18 |
|