feat: add initial support for points page
This commit is contained in:
26
components/MyPages/Blocks/Points/ExpiringPoints/index.tsx
Normal file
26
components/MyPages/Blocks/Points/ExpiringPoints/index.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
import { _ } from "@/lib/translation"
|
||||
|
||||
import styles from "./expiringPoints.module.css"
|
||||
|
||||
export const ExpiringPoints = () => {
|
||||
return (
|
||||
<table className={styles.table}>
|
||||
<thead className={styles.thead}>
|
||||
<tr>
|
||||
<th className={styles.th}>{_("Arrival date")}</th>
|
||||
<th className={styles.th}>{_("Points")}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr className={styles.tr}>
|
||||
<td className={styles.td}>23 May 2023</td>
|
||||
<td className={styles.td}>30000</td>
|
||||
</tr>
|
||||
<tr className={styles.tr}>
|
||||
<td className={styles.td}>23 May 2023</td>
|
||||
<td className={styles.td}>-15000</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user