index.js 489 B

12345678910111213141516171819202122
  1. import React from 'react';
  2. import ChannelsTable from '../../components/ChannelsTable';
  3. import { Layout } from '@douyinfe/semi-ui';
  4. import { useTranslation } from 'react-i18next';
  5. const File = () => {
  6. const { t } = useTranslation();
  7. return (
  8. <>
  9. <Layout>
  10. <Layout.Header>
  11. <h3>{t('管理渠道')}</h3>
  12. </Layout.Header>
  13. <Layout.Content>
  14. <ChannelsTable />
  15. </Layout.Content>
  16. </Layout>
  17. </>
  18. );
  19. };
  20. export default File;