import PageContentBlock from '@/components/elements/PageContentBlock'; interface BaseProps { title: string; image?: string; message: string; onRetry?: () => void; onBack?: () => void; } const ScreenBlock = ({ title, image, message, onBack, onRetry}: BaseProps) => { return
} export default ScreenBlock