2016-08-26 14:08:10 +02:00

18 lines
381 B
JavaScript

/*
* NotFoundPage Messages
*
* This contains all the text for the NotFoundPage component.
*/
import { defineMessages } from 'react-intl';
export default defineMessages({
header: {
id: 'app.components.NotFoundPage.header',
defaultMessage: '404',
},
description: {
id: 'app.components.NotFoundPage.description',
defaultMessage: 'Page not found.',
},
});