import React from 'react'; import { AlertTriangle } from 'lucide-react'; interface ErrorStateProps { message?: string; onRetry?: () => void; } export const ErrorState: React.FC = ({ message = 'The mountain weather shifted. Try loading the journeys again.', onRetry, }) => { return (

Something went wrong

{message}

{onRetry && ( )}
); };