import React from 'react'; import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer, } from 'recharts'; const METRIC_NAMES = ['freq', 'finger', 'gap', 'cooccur', 'divers']; const COLORS = ['#34d399', '#60a5fa', '#fbbf24', '#f43f5e', '#c084fc']; export default function BaseHistory({ history }) { if (!history || history.length === 0) { return (
학습 이력이 부족합니다.