mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-03 08:05:33 +00:00
17 lines
443 B
JavaScript
17 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>
|
|
)
|
|
}
|