import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { DONATION_ADDRESSES_MAP } from 'config/data'; export default class YourReceiving extends Component { constructor(props) { super(props); } static propTypes = { destinationKind: PropTypes.string.isRequired }; render() { const { destinationKind } = this.props; return (
Start Swap
); } }