mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
d9576189a3
Migrate Share modal to React GitOrigin-RevId: 96a52df6ffd751cfcca2bbb68eb9e7a6dc31ff28
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>
|
|
)
|
|
}
|