您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112
  1. 'use client'
  2. import { useTranslation } from 'react-i18next'
  3. import Container from './Container'
  4. import useDocumentTitle from '@/hooks/use-document-title'
  5. const AppList = () => {
  6. const { t } = useTranslation()
  7. useDocumentTitle(t('common.menus.datasets'))
  8. return <Container />
  9. }
  10. export default AppList