import {t} from 'sentry/locale'; import type {Series} from 'sentry/types/echarts'; import Chart, {ChartType} from 'sentry/views/insights/common/components/chart'; import ChartPanel from 'sentry/views/insights/common/components/chartPanel'; import {CHART_HEIGHT} from 'sentry/views/insights/http/settings'; interface Props { isLoading: boolean; series: Series[]; error?: Error | null; } export function ResponseCodeCountChart({series, isLoading, error}: Props) { return ( ); }