18 lines
381 B
JavaScript
Raw Normal View History

2016-08-18 11:41:13 +02:00
/*
* NotFoundPage Messages
*
* This contains all the text for the NotFoundPage component.
*/
import { defineMessages } from 'react-intl';
export default defineMessages({
header: {
2016-08-18 11:47:26 +02:00
id: 'app.components.NotFoundPage.header',
2016-08-26 13:28:12 +02:00
defaultMessage: '404',
},
description: {
id: 'app.components.NotFoundPage.description',
defaultMessage: 'Page not found.',
2016-08-18 11:41:13 +02:00
},
});