import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation, Trans } from 'react-i18next'; import Card from './Card'; const Status = ({ message, buttonMessage, reloadPage }) => (
{message}
{buttonMessage && }
); Status.propTypes = { message: PropTypes.string.isRequired, buttonMessage: PropTypes.string, reloadPage: PropTypes.func, }; export default withTranslation()(Status);