import * as React from 'react'; import {Grid} from '@trussworks/react-uswds'; import J40Map from '../J40Map'; import * as styles from './mapWrapper.module.scss'; import * as EXPLORE_COPY from '../../data/copy/explore'; interface IMapWrapperProps { location: Location } const MapWrapper = ({location}: IMapWrapperProps) => { return ( <> {EXPLORE_COPY.DOWNLOAD_DRAFT.PARAGRAPH_1} {EXPLORE_COPY.NOTE_ON_TERRITORIES.INTRO} {EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_1} {EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_2} {EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_3} {EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_4} {EXPLORE_COPY.NOTE_ON_TRIBAL_NATIONS.INTRO} {EXPLORE_COPY.NOTE_ON_TRIBAL_NATIONS.PARA_1} > ); }; export default MapWrapper;
{EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_1}
{EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_2}
{EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_3}
{EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_4}
{EXPLORE_COPY.NOTE_ON_TRIBAL_NATIONS.PARA_1}