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 ( <>

{t('管理渠道')}

); }; export default File;