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