/** * NotFoundPage * * This is the page we show when the user visits a url that doesn't have a route */ import * as React from 'react'; // import { FormattedMessage } from 'react-intl'; import Viewer404 from '../../components/Viewer404'; // import messages from './messages'; export default function NotFound() { return (

{/* */}

); }