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';
|
2023-04-26 17:02:26 +08:00
|
|
|
|
|
|
|
|
const Redemption = () => (
|
|
|
|
|
<>
|
2024-03-23 21:24:39 +08:00
|
|
|
<Layout>
|
|
|
|
|
<Layout.Header>
|
|
|
|
|
<h3>管理兑换码</h3>
|
|
|
|
|
</Layout.Header>
|
|
|
|
|
<Layout.Content>
|
|
|
|
|
<RedemptionsTable />
|
|
|
|
|
</Layout.Content>
|
|
|
|
|
</Layout>
|
2023-04-26 17:02:26 +08:00
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
export default Redemption;
|