import { useEffect, useState } from 'react'; export function PDFSkeleton() { const [showNotification, setShowNotification] = useState(false); useEffect(() => { const timer = setTimeout(() => { setShowNotification(true); }, 3000); return () => clearTimeout(timer); }, []); return (