mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
3c124667ba
[SettingsPage] Split Misc Section GitOrigin-RevId: b6fc60c571dfaf3aec542f3df8dc826a0ba3ab58
14 lines
264 B
TypeScript
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
|