mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-29 22:56:39 +08:00
15 lines
295 B
JavaScript
15 lines
295 B
JavaScript
import React from 'react';
|
|
import { Header, Segment } from 'semantic-ui-react';
|
|
import ChannelsTable from '../../components/ChannelsTable';
|
|
|
|
const File = () => (
|
|
<>
|
|
<Segment>
|
|
<Header as='h3'>管理渠道</Header>
|
|
<ChannelsTable />
|
|
</Segment>
|
|
</>
|
|
);
|
|
|
|
export default File;
|