mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-20 10:36:37 +08:00
22 lines
542 B
JavaScript
22 lines
542 B
JavaScript
import React from 'react';
|
|
import { Card } from 'semantic-ui-react';
|
|
import ChannelsTable from '../../components/ChannelsTable';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
const Channel = () => {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<div className='dashboard-container'>
|
|
<Card fluid className='chart-card'>
|
|
<Card.Content>
|
|
<Card.Header className='header'>{t('channel.title')}</Card.Header>
|
|
<ChannelsTable />
|
|
</Card.Content>
|
|
</Card>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Channel;
|