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