Files
one-api/web/default/src/pages/Channel/index.js
JustSong 7e51b04221
Some checks failed
CI / Unit tests (push) Has been cancelled
CI / commit_lint (push) Has been cancelled
feat: able to hide test model selector and balance col
2024-10-27 18:31:43 +08:00

15 lines
301 B
JavaScript

import React from 'react';
import { Header, Segment } from 'semantic-ui-react';
import ChannelsTable from '../../components/ChannelsTable';
const Channel = () => (
<>
<Segment>
<Header as='h3'>管理渠道</Header>
<ChannelsTable />
</Segment>
</>
);
export default Channel;