/** @format */ /** * External dependencies */ import PropTypes from 'prop-types'; /** * A component to display summarized table data - the list of data passed in on a single line. * * @return { object } - */ const TableSummary = ( { data } ) => { return ( ); }; TableSummary.propTypes = { /** * An array of objects with `label` & `value` properties, which display on a single line. */ data: PropTypes.array, }; export default TableSummary;