File size: 345 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
/**
* NotFoundPage
*
* This is the page we show when the user visits a url that doesn't have a route
*
*/
import React from 'react';
import { FormattedMessage } from 'react-intl';
import messages from './messages';
export default function NotFound() {
return (
<h1>
<FormattedMessage {...messages.header} />
</h1>
);
}
|