import { Snackbar } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; import { AnimatePresence, motion } from 'framer-motion'; export const RetryNotice = ({ show }) => { if (!show) return null; return (
{__( 'Just a moment, this is taking longer than expected.', 'extendify-local', )}
); };