import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import UserPreferencedCurrencyDisplay from '../../../user-preferenced-currency-display'; import { PRIMARY, SECONDARY } from '../../../../../helpers/constants/common'; export default class CancelTransaction extends PureComponent { static propTypes = { value: PropTypes.string, }; render() { const { value } = this.props; return (
); } }