20 lines
479 B
JavaScript
Raw Normal View History

2023-04-22 20:39:27 +08:00
import React from 'react';
2023-04-22 21:41:16 +08:00
import ChannelsTable from '../../components/ChannelsTable';
2023-12-05 18:15:40 +08:00
import {Layout} from "@douyinfe/semi-ui";
import RedemptionsTable from "../../components/RedemptionsTable";
2023-04-22 20:39:27 +08:00
const File = () => (
2023-12-05 18:15:40 +08:00
<>
<Layout>
<Layout.Header>
<h3>管理渠道</h3>
</Layout.Header>
<Layout.Content>
<ChannelsTable/>
</Layout.Content>
</Layout>
</>
2023-04-22 20:39:27 +08:00
);
export default File;