mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
abb59e4603
[web] Migrate the file tree on the editor page to Bootstrap 5 GitOrigin-RevId: e2efec26242c8cdab37a54bc182b83bfb0f1eb3c
20 lines
561 B
JavaScript
20 lines
561 B
JavaScript
import { useTranslation } from 'react-i18next'
|
|
import { useLocation } from '../../../shared/hooks/use-location'
|
|
import OLButton from '@/features/ui/components/ol/ol-button'
|
|
|
|
function FileTreeError() {
|
|
const { t } = useTranslation()
|
|
const { reload: handleClick } = useLocation()
|
|
|
|
return (
|
|
<div className="file-tree-error">
|
|
<p>{t('generic_something_went_wrong')}</p>
|
|
<p>{t('please_refresh')}</p>
|
|
<OLButton variant="primary" onClick={handleClick}>
|
|
{t('refresh')}
|
|
</OLButton>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default FileTreeError
|