/* eslint-disable react/sort-comp, react/button-has-type */ import React from 'react'; import PropTypes from 'prop-types'; import { Hyperlink, Icon } from '@openedx/paragon'; import { Download } from '@openedx/paragon/icons'; import lms from 'data/services/lms'; /** * * displays a result summary cell for a single bulk management upgrade history entry. * @param {string} courseId - course identifier * @param {number} rowId - row/error identifier * @param {string} text - summary string */ const ResultsSummary = ({ rowId, text, }) => ( {text} ); ResultsSummary.propTypes = { rowId: PropTypes.number.isRequired, text: PropTypes.string.isRequired, }; export default ResultsSummary;