import React from 'react';
const NoMatch = () => (
<div>
<h3>404</h3>
<div>Page not found.</div>
</div>
);
export default NoMatch;