mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
45 lines
918 B
JavaScript
45 lines
918 B
JavaScript
|
import Icon from './icon'
|
||
|
import { useTranslation } from 'react-i18next'
|
||
|
import { memo } from 'react'
|
||
|
|
||
|
function UpgradeBenefits() {
|
||
|
const { t } = useTranslation()
|
||
|
|
||
|
return (
|
||
|
<ul className="list-unstyled upgrade-benefits">
|
||
|
<li>
|
||
|
<Icon type="check" />
|
||
|
|
||
|
{t('unlimited_projects')}
|
||
|
</li>
|
||
|
<li>
|
||
|
<Icon type="check" />
|
||
|
|
||
|
{t('collabs_per_proj', { collabcount: 'Multiple' })}
|
||
|
</li>
|
||
|
<li>
|
||
|
<Icon type="check" />
|
||
|
|
||
|
{t('full_doc_history')}
|
||
|
</li>
|
||
|
<li>
|
||
|
<Icon type="check" />
|
||
|
|
||
|
{t('sync_to_dropbox')}
|
||
|
</li>
|
||
|
<li>
|
||
|
<Icon type="check" />
|
||
|
|
||
|
{t('sync_to_github')}
|
||
|
</li>
|
||
|
<li>
|
||
|
<Icon type="check" />
|
||
|
|
||
|
{t('compile_larger_projects')}
|
||
|
</li>
|
||
|
</ul>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default memo(UpgradeBenefits)
|