mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-10 06:39:01 +02:00
9daa8f5d98
[web] rename all the JSX files to .jsx/.tsx GitOrigin-RevId: 82056ae47e017523722cf258dcc83c8a925a28f7
45 lines
918 B
React
45 lines
918 B
React
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)
|