import React from 'react'; import { designTokens } from '../../config/theme'; const DeviceTrendChart = ({ data }) => { const maxValue = Math.max(...data.map(d => d.value)); const chartHeight = 120; return (
{data.map((item, index) => (
{item.label}
))}
); }; export default React.memo(DeviceTrendChart);