/* eslint-disable react/no-danger */ import React from 'react'; import PropTypes from 'prop-types'; const propTypes = { slice: PropTypes.object.isRequired, removeSlice: PropTypes.func.isRequired, expandedSlices: PropTypes.object, }; function SliceCell({ expandedSlices, removeSlice, slice }) { return (
{slice.slice_name}
{slice.description && } { removeSlice(slice.slice_id); }} />
loading
); } SliceCell.propTypes = propTypes; export default SliceCell;