/* eslint-disable react/prop-types */ import { Card, Row, Col } from 'react-bootstrap'; import DownloadChart from '../charts/DownloadChart'; import UploadChart from '../charts/UploadChart'; import PingChart from '../charts/PingChart'; import { FaDownload, FaUpload, FaTachometerAlt } from 'react-icons/fa'; const Chart = ({ data, theme }) => { return ( <> Download Upload Ping ); }; export default Chart;