import React from 'react'; // import PropTypes from 'prop-types'; import { Alert } from 'react-bootstrap'; const propTypes = {}; export default function NotFound() { return (

We couldn't find a page for that address.

Head back to   your current challenge .

); } NotFound.displayName = 'NotFound'; NotFound.propTypes = propTypes;