import React from 'react'; // import PropTypes from 'prop-types'; const propTypes = {}; export default function NotFound() { return (
404 Not Found
); } NotFound.displayName = 'NotFound'; NotFound.propTypes = propTypes;