React 17 챠트 에제 클래스형 컴퍼넌트
import React, { Component } from 'react';import axios from 'axios';import { BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer, Cell, LabelList} from 'recharts';import { RefreshCw } from 'lucide-react';// 타입 정의interface DashboardState { testPlan: { scenario: { mapped: number, total: number }, testCase: { mapped: number, total: number }, activity: { mapp..