Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

page.tsx 308B

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