import React from 'react';
import PropTypes from 'prop-types';
import { CWidgetBrand, CRow, CCol } from '@coreui/react';
import CIcon from '@coreui/icons-react';
import ChartLineSimple from '../charts/ChartLineSimple';
const WidgetsBrand = ({withCharts})=>{
// render
return withCharts ?
:
}
WidgetsBrand.propTypes = {
withCharts: PropTypes.bool
}
export default WidgetsBrand