2023-04-26 17:02:26 +08:00
|
|
|
import React from 'react';
|
2025-06-04 00:42:06 +08:00
|
|
|
import RedemptionsTable from '../../components/table/RedemptionsTable';
|
2023-04-26 17:02:26 +08:00
|
|
|
|
2024-12-13 19:03:14 +08:00
|
|
|
const Redemption = () => {
|
|
|
|
|
return (
|
2025-06-25 15:26:51 +08:00
|
|
|
<div className="mt-[64px]">
|
2025-05-23 16:58:19 +08:00
|
|
|
<RedemptionsTable />
|
2025-06-25 15:26:51 +08:00
|
|
|
</div>
|
2025-04-04 12:00:38 +08:00
|
|
|
);
|
|
|
|
|
};
|
2023-04-26 17:02:26 +08:00
|
|
|
|
|
|
|
|
export default Redemption;
|