Quellcode durchsuchen

Improve PaymentChain look by a little

master
BinHong Lee vor 7 Jahren
Ursprung
Commit
d28ecddb33
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. +2
    -1
      src/Components/Payment.js

+ 2
- 1
src/Components/Payment.js Datei anzeigen

@@ -5,7 +5,8 @@ class Payment extends Component {
return (
<div className="Payment">
<br/>
{this.props.payment.from} ----{this.props.payment.amount}----> {this.props.payment.to}
{this.props.payment.from} -> {this.props.payment.to}<br/>
Amount: {parseFloat(this.props.payment.amount).toFixed(2)}
</div>
)
}


Laden…
Abbrechen
Speichern