2023-11-09 11:33:13 -05:00
|
|
|
import { Col, Row } from 'react-bootstrap'
|
2024-05-01 11:43:02 -04:00
|
|
|
import { Trans } from 'react-i18next'
|
2023-11-09 11:33:13 -05:00
|
|
|
import GroupInvitesItemFooter from './group-invites-item-footer'
|
|
|
|
import type { TeamInvite } from '../../../../../../types/team-invite'
|
|
|
|
|
|
|
|
type GroupInvitesItemProps = {
|
|
|
|
teamInvite: TeamInvite
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function GroupInvitesItem({
|
|
|
|
teamInvite,
|
|
|
|
}: GroupInvitesItemProps) {
|
|
|
|
return (
|
|
|
|
<Row className="row-spaced">
|
|
|
|
<Col md={8} mdOffset={2} className="text-center">
|
|
|
|
<div className="card">
|
|
|
|
<div className="page-header">
|
|
|
|
<h2>
|
2024-05-01 11:43:02 -04:00
|
|
|
<Trans
|
|
|
|
i18nKey="invited_to_group"
|
|
|
|
values={{ inviterName: teamInvite.inviterName }}
|
|
|
|
shouldUnescape
|
|
|
|
tOptions={{ interpolation: { escapeValue: true } }}
|
|
|
|
components={
|
|
|
|
/* eslint-disable-next-line react/jsx-key */
|
|
|
|
[<span className="team-invite-name" />]
|
|
|
|
}
|
|
|
|
/>
|
2023-11-09 11:33:13 -05:00
|
|
|
</h2>
|
|
|
|
</div>
|
|
|
|
<GroupInvitesItemFooter teamInvite={teamInvite} />
|
|
|
|
</div>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
)
|
|
|
|
}
|