2023-04-26 17:02:26 +08:00
|
|
|
import React from 'react';
|
|
|
|
|
import RedemptionsTable from '../../components/RedemptionsTable';
|
2024-03-23 21:24:39 +08:00
|
|
|
import { Layout } from '@douyinfe/semi-ui';
|
2024-12-13 19:03:14 +08:00
|
|
|
import { useTranslation } from 'react-i18next';
|
2023-04-26 17:02:26 +08:00
|
|
|
|
2024-12-13 19:03:14 +08:00
|
|
|
const Redemption = () => {
|
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Layout>
|
|
|
|
|
<Layout.Header>
|
2025-04-04 12:00:38 +08:00
|
|
|
<h3>{t('管理兑换码')}</h3>
|
|
|
|
|
</Layout.Header>
|
|
|
|
|
<Layout.Content>
|
|
|
|
|
<RedemptionsTable />
|
|
|
|
|
</Layout.Content>
|
|
|
|
|
</Layout>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|
2023-04-26 17:02:26 +08:00
|
|
|
|
|
|
|
|
export default Redemption;
|