mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-01 12:34:18 -07:00
16 lines
561 B
TypeScript
16 lines
561 B
TypeScript
/* eslint-disable max-len */
|
|
import {defineMessages} from 'react-intl';
|
|
|
|
|
|
export const PAGE_INTRO = defineMessages({
|
|
PAGE_TILE: {
|
|
id: 'technical.support.doc.page.title.text',
|
|
defaultMessage: 'Technical Support Document',
|
|
description: 'Navigate to the the Technical Support Doc page, this will be the page title text',
|
|
},
|
|
COMING_SOON: {
|
|
id: 'technical.support.doc.page.coming.soon.text',
|
|
defaultMessage: 'Coming Soon!',
|
|
description: 'Navigate to the the Technical Support Doc page, this will be the page coming soon text',
|
|
},
|
|
});
|