import React from 'react'; import PropTypes from 'prop-types'; import s from '../styles/pageNotFound.style'; const propTypes = { location: PropTypes.object.isRequired, }; function PageNotFound({ location }) { return (
Page not found - the path, {s.code(location.pathname)}, did not match any React Router routes.
); } PageNotFound.propTypes = propTypes; export default PageNotFound;