import React from 'react'; import PropTypes from 'prop-types'; import { Col } from 'antd'; import styles from './index.less'; import responsive from './responsive'; const Description = ({ term, column, children, ...restProps }) => ( {term &&
{term}
} {children !== null && children !== undefined &&
{children}
} ); Description.defaultProps = { term: '', }; Description.propTypes = { term: PropTypes.node, }; export default Description;