Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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