mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
0639f266d8
[web] Redirect to invite screen if new user register with a pending group invitations GitOrigin-RevId: 39aeffd65b9d793c87e53398a700ad140794594e
31 lines
843 B
TypeScript
31 lines
843 B
TypeScript
import { Col, Row } from 'react-bootstrap'
|
|
import { useTranslation } from 'react-i18next'
|
|
import GroupInvitesItemFooter from './group-invites-item-footer'
|
|
import type { TeamInvite } from '../../../../../../types/team-invite'
|
|
|
|
type GroupInvitesItemProps = {
|
|
teamInvite: TeamInvite
|
|
}
|
|
|
|
export default function GroupInvitesItem({
|
|
teamInvite,
|
|
}: GroupInvitesItemProps) {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<Row className="row-spaced">
|
|
<Col md={8} mdOffset={2} className="text-center">
|
|
<div className="card">
|
|
<div className="page-header">
|
|
<h2>
|
|
{t('invited_to_group', {
|
|
inviterName: teamInvite.inviterName,
|
|
})}
|
|
</h2>
|
|
</div>
|
|
<GroupInvitesItemFooter teamInvite={teamInvite} />
|
|
</div>
|
|
</Col>
|
|
</Row>
|
|
)
|
|
}
|