You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
387 B
13 lines
387 B
import { Component } from 'react';
|
|
|
|
export default class HofRow extends Component {
|
|
render() {
|
|
return (
|
|
<div className='entry'>
|
|
<div className='rank'>{this.props.rank}</div>
|
|
<div className='initials'>{this.props.initials}</div>
|
|
<div className='score'>{this.props.score}</div>
|
|
</div>
|
|
);
|
|
}
|
|
};
|
|
|