Skip to content

Commit

Permalink
leaderboard.jsx th
Browse files Browse the repository at this point in the history
  • Loading branch information
keldaan-ag committed Jul 31, 2021
1 parent 4557670 commit a30c210
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/public/src/pages/component/leaderboard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ import LeaderboardInfo from './leaderboard-info';
class Leaderboard extends Component{
render(){
return <div>
<div style={{display:'flex', justifyContent:'space-between'}}>
<p>Rank</p>
<p>Name</p>
<p>Elo</p>
</div>
<table>
<thead></thead>
<tbody>
{this.props.infos.map(this.createItem.bind(this))}
</tbody>
Expand Down

0 comments on commit a30c210

Please sign in to comment.