5b96039b99
Removed older modal files
20 lines
461 B
JavaScript
20 lines
461 B
JavaScript
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;
|