import React from 'react' import { CCard, CCardBody, CCol, CCardHeader, CRow } from '@coreui/react' import { CChartBar, CChartDoughnut, CChartLine, CChartPie, CChartPolarArea, CChartRadar, } from '@coreui/react-chartjs' import { DocsLink } from 'src/reusable' const Charts = () => { const random = () => Math.round(Math.random() * 100) return ( Bar Chart Line Chart Doughnut Chart Pie Chart Polar Area Chart Radar Chart ) } export default Charts