19 lines
364 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';
2024-03-23 21:24:39 +08:00
import { Layout } from '@douyinfe/semi-ui';
2023-04-22 20:39:27 +08:00
const File = () => (
2024-03-23 21:24:39 +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;