2017-09-02 17:36:27 +02:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
class TransactionTableHeader extends React.PureComponent {
|
|
|
|
render() {
|
|
|
|
const { filter } = this.props;
|
|
|
|
return (
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{__("Date")}</th>
|
2017-09-04 19:35:41 +02:00
|
|
|
<th>{__("Amount(Fee)")}</th>
|
2017-09-02 17:36:27 +02:00
|
|
|
{filter != "unfiltered" && <th> {__("Claim Name")} </th>}
|
|
|
|
<th>{__("Transaction")}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default TransactionTableHeader;
|