interface Props { attempt: number maxAttempts?: number } export function NetworkRetry({ attempt, maxAttempts = 5 }: Props) { return (
Having trouble loading the knowledge graph — trying again ({attempt} of {maxAttempts})…
) }