2021-06-25 04:13:17 -04:00
|
|
|
import { useProjectContext } from '../../../shared/context/project-context'
|
2021-03-12 05:23:46 -05:00
|
|
|
import { Col, Row } from 'react-bootstrap'
|
2023-10-19 04:33:26 -04:00
|
|
|
import { useTranslation } from 'react-i18next'
|
2021-03-12 05:23:46 -05:00
|
|
|
|
|
|
|
export default function OwnerInfo() {
|
2023-10-19 04:33:26 -04:00
|
|
|
const { t } = useTranslation()
|
2022-01-10 10:47:10 -05:00
|
|
|
const { owner } = useProjectContext()
|
2021-03-12 05:23:46 -05:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Row className="project-member">
|
2022-01-10 10:47:10 -05:00
|
|
|
<Col xs={7}>{owner?.email}</Col>
|
2021-03-12 05:23:46 -05:00
|
|
|
<Col xs={3} className="text-left">
|
2023-10-19 04:33:26 -04:00
|
|
|
{t('owner')}
|
2021-03-12 05:23:46 -05:00
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
)
|
|
|
|
}
|