latex-ub/services/web/frontend/js/features/settings/components/sessions-section.tsx
2025-05-05 12:24:05 +00:00

14 lines
264 B
TypeScript

import { useTranslation } from 'react-i18next'
function SessionsSection() {
const { t } = useTranslation()
return (
<>
<h3>{t('sessions')}</h3>
<a href="/user/sessions">{t('manage_sessions')}</a>
</>
)
}
export default SessionsSection