import React from 'react'; import {useIntl} from 'gatsby-plugin-intl'; import {Grid} from '@trussworks/react-uswds'; import ExploreDataBox from '../components/ExploreDataBox'; import J40Map from '../components/J40Map'; import J40MainGridContainer from '../components/J40MainGridContainer'; import Layout from '../components/layout'; import DatasetsButton from '../components/DatasetsButton'; import * as EXPLORE_COPY from '../data/copy/explore'; interface IMapPageProps { location: Location; } const ExporeToolPage = ({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)}

{/* Gradually increase width of the Grid as the width decreases from desktop to mobile*/} {/* desktop = 7 columns, tablet = 10 columns and mobile = 12 columns (full width) */}

{EXPLORE_COPY.PAGE_DESCRIPTION1}

{EXPLORE_COPY.PAGE_DESCRIPTION2}

{EXPLORE_COPY.NOTE_ON_TERRITORIES.INTRO}

{EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_0}

{EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_1}

{EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_2}

{EXPLORE_COPY.NOTE_ON_TRIBAL_NATIONS.INTRO}

{EXPLORE_COPY.NOTE_ON_TRIBAL_NATIONS.PARA_1}

{EXPLORE_COPY.NOTE_ON_TRIBAL_NATIONS.PARA_2}

); }; export default ExporeToolPage;