mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 23:00:08 +02:00

Convert filetree components to typescript GitOrigin-RevId: f06abb9705013d3da1a87c8f4bef4a82c4fab5d2
20 lines
561 B
TypeScript
20 lines
561 B
TypeScript
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
|