2021-06-25 04:13:17 -04:00
|
|
|
import { useProjectContext } from '../../../shared/context/project-context'
|
2023-10-19 04:33:26 -04:00
|
|
|
import { useTranslation } from 'react-i18next'
|
2024-10-09 08:13:50 -04:00
|
|
|
import OLRow from '@/features/ui/components/ol/ol-row'
|
|
|
|
import OLCol from '@/features/ui/components/ol/ol-col'
|
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 (
|
2024-10-09 08:13:50 -04:00
|
|
|
<OLRow className="project-member">
|
|
|
|
<OLCol xs={7}>{owner?.email}</OLCol>
|
|
|
|
<OLCol xs={3} className="text-start">
|
2023-10-19 04:33:26 -04:00
|
|
|
{t('owner')}
|
2024-10-09 08:13:50 -04:00
|
|
|
</OLCol>
|
|
|
|
</OLRow>
|
2021-03-12 05:23:46 -05:00
|
|
|
)
|
|
|
|
}
|