Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

index.tsx 491B

1234567891011121314151617181920
  1. 'use client'
  2. import { useEducationInit } from '@/app/education-apply/hooks'
  3. import List from './list'
  4. import useDocumentTitle from '@/hooks/use-document-title'
  5. import { useTranslation } from 'react-i18next'
  6. const Apps = () => {
  7. const { t } = useTranslation()
  8. useDocumentTitle(t('common.menus.apps'))
  9. useEducationInit()
  10. return (
  11. <div className='relative flex h-0 shrink-0 grow flex-col overflow-y-auto bg-background-body'>
  12. <List />
  13. </div >
  14. )
  15. }
  16. export default Apps