mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
23 lines
468 B
JavaScript
23 lines
468 B
JavaScript
|
import { Button } from 'react-bootstrap'
|
||
|
import { useTranslation } from 'react-i18next'
|
||
|
|
||
|
function FileTreeError() {
|
||
|
const { t } = useTranslation()
|
||
|
|
||
|
function reload() {
|
||
|
location.reload()
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<div className="file-tree-error">
|
||
|
<p>{t('generic_something_went_wrong')}</p>
|
||
|
<p>{t('please_refresh')}</p>
|
||
|
<Button bsStyle="primary" onClick={reload}>
|
||
|
{t('refresh')}
|
||
|
</Button>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default FileTreeError
|