import React from 'react'; import { Link } from 'react-router-dom'; import * as PropTypes from 'prop-types'; const propTypes = { to: PropTypes.string, btnText: PropTypes.string, }; const NotFound = ({ to = '/', btnText = 'Home' }) => (

Oops! We could not find requested route.

Use your browser{'\''}s back button to navigate to the page you have previously come from, or just press this button.


{btnText}
); NotFound.propTypes = propTypes; export default NotFound;