mirror of
https://github.com/strapi/strapi.git
synced 2025-09-29 10:22:36 +00:00
18 lines
390 B
JavaScript
18 lines
390 B
JavaScript
![]() |
/*
|
||
|
* NotFoundPage Messages
|
||
|
*
|
||
|
* This contains all the text for the NotFoundPage component.
|
||
|
*/
|
||
|
import { defineMessages } from 'react-intl';
|
||
|
|
||
|
export default defineMessages({
|
||
|
header: {
|
||
|
id: 'boilerplate.containers.NotFoundPage.header',
|
||
|
defaultMessage: 'Page not found.',
|
||
|
},
|
||
|
homeButton: {
|
||
|
id: 'boilerplate.containers.NotFoundPage.home',
|
||
|
defaultMessage: 'Home',
|
||
|
},
|
||
|
});
|