X7ROOT File Manager
Current Path:
/home/okeydcqc/.trash/wp-content/plugins/extendify/src/Launch/components
home
/
okeydcqc
/
.trash
/
wp-content
/
plugins
/
extendify
/
src
/
Launch
/
components
/
ðŸ“
..
ðŸ“
BusinessInformation
📄
Card.jsx
(1.45 KB)
📄
CheckboxInput.jsx
(1.42 KB)
📄
CheckboxInputCard.jsx
(1.33 KB)
ðŸ“
CreatingSite
📄
LoadingIndicator.jsx
(188 B)
📄
NavigationButton.jsx
(367 B)
📄
PageControl.jsx
(8.02 KB)
📄
PagePreview.jsx
(7.33 KB)
📄
PageSelectButton.jsx
(962 B)
📄
PageSelectButtonPlaceholder.jsx
(391 B)
📄
RestartLaunchModal.jsx
(5.98 KB)
📄
RetryNotice.jsx
(581 B)
📄
SmallPreview.jsx
(6.79 KB)
📄
Title.jsx
(416 B)
📄
VideoPlayer.jsx
(768 B)
Editing: RetryNotice.jsx
import { Snackbar } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; import { AnimatePresence, motion } from 'framer-motion'; export const RetryNotice = ({ show }) => { if (!show) return null; return ( <AnimatePresence> <motion.div className="extendify-launch fixed bottom-[100px] z-max flex w-full justify-end px-12 pb-4"> <div className="shadow-2xl"> <Snackbar> {__( 'Just a moment, this is taking longer than expected.', 'extendify-local', )} </Snackbar> </div> </motion.div> </AnimatePresence> ); };
Upload File
Create Folder