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