import * as React from 'react'; import {Grid} from '@trussworks/react-uswds'; import {useIntl, FormattedMessage} from 'gatsby-plugin-intl'; import AlertWrapper from '../components/AlertWrapper'; import J40MainGridContainer from '../components/J40MainGridContainer'; import Layout from '../components/layout'; import * as CONTACT_COPY from '../data/copy/contact'; interface IContactPageProps { location: Location; } const ContactPage = ({location}: IContactPageProps) => { const intl = useIntl(); return (

{intl.formatMessage(CONTACT_COPY.PAGE_INTRO.PAGE_HEADING)}

{intl.formatMessage(CONTACT_COPY.PAGE_INTRO.PAGE_SUB_HEADING)}

{CONTACT_COPY.FEEDBACK_EMAIL} , }}/>

); }; export default ContactPage;