import { useState, useEffect, useCallback, useRef } from 'react' import { useI18n } from '../i18n' const MAX_POINTS = 30 const POLL_INTERVAL = 5000 const MAX_IDLE_POLLS = 3 function MiniGraph({ data, max, color, label, unit }) { if (!data || data.length < 2) return