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 (

{t('generic_something_went_wrong')}

{t('please_refresh')}

{t('refresh')}
) } export default FileTreeError