import React from 'react'; import {useIntl} from 'gatsby-plugin-intl'; import {Grid} from '@trussworks/react-uswds'; import HowYouCanHelp from '../components/HowYouCanHelp'; import J40MainGridContainer from '../components/J40MainGridContainer'; import Layout from '../components/layout'; import MapWrapper from '../components/MapWrapper'; import MapLegend from '../components/MapLegend'; import * as EXPLORE_COPY from '../data/copy/explore'; interface IMapPageProps { location: Location; } const CEJSTPage = ({location}: IMapPageProps) => { // We temporarily removed MapControls, which would enable you to `setFeatures` also, for now // We will bring back later when we have interactive controls. const intl = useIntl(); return (

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

{EXPLORE_COPY.PAGE_DESCRIPTION}

); }; export default CEJSTPage;