import React, { FC } from 'react'; import { ResponsiveContainer, LineChart, CartesianGrid, XAxis, YAxis, Tooltip, Legend, Line } from 'recharts'; import { ChartRow } from '../types'; interface Props { data: ChartRow[]; selectedModels: string[]; comparisonMode: boolean; colors: string[]; } const LineTrendView: FC = ({ data, selectedModels, comparisonMode, colors }) => (

Performance Trends

{comparisonMode ? selectedModels.map((model, index) => ( )) : ( <> )}
); export default LineTrendView;