import * as React from 'react'; import PropTypes from 'prop-types'; import { DetailsRow } from '@fluentui/react'; import OpenRow from './OpenRow'; import '@style/table.scss'; const ExpandableDetails = (props): any => { const { detailsProps, isExpand } = props; return (
{isExpand && }
); }; ExpandableDetails.propTypes = { detailsProps: PropTypes.object, isExpand: PropTypes.bool }; export default ExpandableDetails;