mirror of
https://github.com/strapi/strapi.git
synced 2025-12-15 01:02:22 +00:00
14 lines
293 B
JavaScript
14 lines
293 B
JavaScript
/*
|
|
* NotFoundPage Messages
|
|
*
|
|
* This contains all the text for the NotFoundPage component.
|
|
*/
|
|
import { defineMessages } from 'react-intl';
|
|
|
|
export default defineMessages({
|
|
pageNotFound: {
|
|
id: 'app.components.NotFoundPage.pageNotFound',
|
|
defaultMessage: 'Page not found.',
|
|
},
|
|
});
|