mirror of
https://github.com/strapi/strapi.git
synced 2025-11-03 11:25:17 +00:00
18 lines
381 B
JavaScript
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.',
|
|
},
|
|
});
|