import { useProjectContext } from '@/shared/context/project-context' import { useTranslation } from 'react-i18next' import Icon from '@/shared/components/icon' import OLRow from '@/features/ui/components/ol/ol-row' import OLCol from '@/features/ui/components/ol/ol-col' import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher' import MaterialIcon from '@/shared/components/material-icon' export default function OwnerInfo() { const { t } = useTranslation() const { owner } = useProjectContext() return (
} bs5={} />
{owner?.email}
{t('owner')}
) }