2023-04-26 17:02:26 +08:00
|
|
|
import React from 'react';
|
|
|
|
|
import RedemptionsTable from '../../components/RedemptionsTable';
|
2023-11-10 00:10:41 +08:00
|
|
|
import {Layout} from "@douyinfe/semi-ui";
|
2023-04-26 17:02:26 +08:00
|
|
|
|
|
|
|
|
const Redemption = () => (
|
|
|
|
|
<>
|
2023-11-10 00:10:41 +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;
|