21 lines
461 B
React
21 lines
461 B
React
|
import React from "react";
|
||
|
|
||
|
class TransactionTableHeader extends React.PureComponent {
|
||
|
render() {
|
||
|
const { filter } = this.props;
|
||
|
return (
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>{__("Date")}</th>
|
||
|
<th>{__("Amount")}</th>
|
||
|
<th>{__("Fee")}</th>
|
||
|
{filter != "unfiltered" && <th> {__("Claim Name")} </th>}
|
||
|
<th>{__("Transaction")}</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default TransactionTableHeader;
|