This commit is contained in:
GotPPay
2017-10-16 20:21:19 +02:00
parent 8a7f8794cf
commit a75ea978f9
2554 changed files with 804218 additions and 109 deletions

18
web/src/PairComponent.js Normal file
View File

@@ -0,0 +1,18 @@
import React, { Component } from 'react';
export default class PairComponent extends Component{
constructor(props) {
super(props);
this.state = {pairName: this.props.pair};
}
render(){
return (
<div>
<div className = "horizontalDiv">
<div>{this.state.pairName}</div>
</div>
</div>
)
}
}