import React from 'react'; import { ResponsiveLine } from '@nivo/line'; import PropTypes from 'prop-types'; import Card from '../ui/Card'; const Statistics = props => ( {props.history ? :

Empty data

}
); Statistics.propTypes = { history: PropTypes.array.isRequired, refreshButton: PropTypes.node, }; export default Statistics;