// @flow import React from 'react'; import translate from 'translations'; export default class Donate extends React.Component { props: { onDonate: (address: string, amount: string, unit: string) => void }; state: { clicked: boolean } = { clicked: false }; render() { return (

{translate('sidebar_donation')}

{translate('sidebar_donate')} {this.state.clicked &&
{translate('sidebar_thanks')}
}
); } onClick = () => { // FIXME move to config this.props.onDonate('0x7cB57B5A97eAbe94205C07890BE4c1aD31E486A8', '1', 'ETH'); this.setState({ clicked: true }); }; }