import React from 'react'; import { Card, Spin } from 'antd'; import styles from './index.less'; const ChartCard = ({ loading = false, contentHeight, title, action, total, footer, children, ...rest }) => { const content = (
{title} {action}
{ // eslint-disable-next-line total &&
}
{children}
{ footer && (
{footer}
) }
); return ( {{content}} ); }; export default ChartCard;