23 lines
481 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';
import { useTranslation } from 'react-i18next';
2023-04-22 20:39:27 +08:00
const File = () => {
const { t } = useTranslation();
return (
<>
<Layout>
<Layout.Header>
<h3>{t('管理渠道')}</h3>
2024-03-23 21:24:39 +08:00
</Layout.Header>
<Layout.Content>
<ChannelsTable />
</Layout.Content>
</Layout>
</>
);
};
2023-04-22 20:39:27 +08:00
export default File;