mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
18 lines
443 B
JavaScript
18 lines
443 B
JavaScript
|
import React from 'react'
|
||
|
import { useProjectContext } from './share-project-modal'
|
||
|
import { Col, Row } from 'react-bootstrap'
|
||
|
import { Trans } from 'react-i18next'
|
||
|
|
||
|
export default function OwnerInfo() {
|
||
|
const project = useProjectContext()
|
||
|
|
||
|
return (
|
||
|
<Row className="project-member">
|
||
|
<Col xs={7}>{project.owner?.email}</Col>
|
||
|
<Col xs={3} className="text-left">
|
||
|
<Trans i18nKey="owner" />
|
||
|
</Col>
|
||
|
</Row>
|
||
|
)
|
||
|
}
|