import React from 'react'; import PropTypes from 'prop-types'; import { FormattedMessage } from 'react-intl'; import Button from 'components/Button'; import styles from './styles.scss'; function NotFound({ history }) { return (

404

); } NotFound.propTypes = { history: PropTypes.shape({ goBack: PropTypes.func, }).isRequired, }; export default NotFound;