You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

layout.tsx 319B

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