import { useTranslation } from 'react-i18next' import OLRow from '@/shared/components/ol/ol-row' import OLCol from '@/shared/components/ol/ol-col' import Cell from '@/features/settings/components/emails/cell' export default function TokenTableHeader() { const { t } = useTranslation() return ( <> {t('token')} {t('created_at')} {t('last_used')} {t('expires')}
) }