| 12345678910111213141516171819202122 |
- import React from 'react';
- import ChannelsTable from '../../components/ChannelsTable';
- import { Layout } from '@douyinfe/semi-ui';
- import { useTranslation } from 'react-i18next';
- const File = () => {
- const { t } = useTranslation();
- return (
- <>
- <Layout>
- <Layout.Header>
- <h3>{t('管理渠道')}</h3>
- </Layout.Header>
- <Layout.Content>
- <ChannelsTable />
- </Layout.Content>
- </Layout>
- </>
- );
- };
- export default File;
|