import * as _ from 'lodash'; import * as React from 'react'; import {colors} from 'ts/utils/colors'; interface TransactionSubmittedProps { etherScanLinkIfExists?: string; } interface TransactionSubmittedState {} export class TransactionSubmitted extends React.Component { public render() { if (_.isUndefined(this.props.etherScanLinkIfExists)) { return
Transaction submitted to the network
; } else { return (
Transaction submitted to the network:{' '} Verify on Etherscan
); } } }