import React from 'react'; import PropTypes from 'prop-types'; const ReportViewer= ({ hidden, report, }) =>{ if (hidden) { return null; } if (report === undefined) { return null; } return report.map((task, id) => (