overleaf/services/web/frontend/js/features/share-project-modal/components/member-privileges.jsx

21 lines
416 B
React
Raw Normal View History

import PropTypes from 'prop-types'
import { useTranslation } from 'react-i18next'
export default function MemberPrivileges({ privileges }) {
const { t } = useTranslation()
switch (privileges) {
case 'readAndWrite':
return t('can_edit')
case 'readOnly':
return t('read_only')
default:
return null
}
}
MemberPrivileges.propTypes = {
privileges: PropTypes.string.isRequired,
}