interface BackendConnectionErrorPageProps { errorMessage: string; isRetrying: boolean; onRetry: () => void; } export function BackendConnectionErrorPage({ errorMessage, isRetrying, onRetry, }: BackendConnectionErrorPageProps) { return (
Fusion couldn't load your projects right now. Please make sure the backend is running and try again.
Error: {errorMessage}