import React from 'react'; import { Card, CardBody } from 'reactstrap'; import { withTranslation } from 'react-i18next'; const Error500 = ({ t }) => (
500

{t('Whoops, something went wrong!')}


{t('Try refreshing the page, or going back and attempting the action again. ')} {t('If this problem persists,')} {t('contact us')} .

); export default withTranslation()(Error500);