import { Col, Row } from 'react-bootstrap' import { Trans } 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) { return (

] } />

) }