interface BackendConnectionErrorPageProps { errorMessage: string; isRetrying: boolean; onRetry: () => void; } export function BackendConnectionErrorPage({ errorMessage, isRetrying, onRetry, }: BackendConnectionErrorPageProps) { return (

Can't reach the Fusion backend

Fusion couldn't load your projects right now. Please make sure the backend is running and try again.

Error: {errorMessage}

); }