mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-04-19 18:48:38 +00:00
19 lines
413 B
JavaScript
19 lines
413 B
JavaScript
import React from 'react';
|
|
import ChannelsTable from '../../components/ChannelsTable';
|
|
import {Layout} from "@douyinfe/semi-ui";
|
|
|
|
const File = () => (
|
|
<>
|
|
<Layout>
|
|
<Layout.Header>
|
|
<h3>管理渠道</h3>
|
|
</Layout.Header>
|
|
<Layout.Content>
|
|
<ChannelsTable/>
|
|
</Layout.Content>
|
|
</Layout>
|
|
</>
|
|
);
|
|
|
|
export default File;
|