mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-07-29 23:31:16 -07:00
* Update side panel copy to Living copy * Update lead paint short description * Rebase main and update areaDetail snapshots * Update cypress test on dataset used in beta header * QA review updates * Update deploy-fe-main to point to new CDN (d3r)
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
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 (
|
|
<>
|
|
<Grid row>
|
|
<J40Map location={location}/>
|
|
</Grid>
|
|
|
|
<Grid row>
|
|
<Grid col={7}>
|
|
<div className={styles.mapCaptionTextLink}>
|
|
{EXPLORE_COPY.DOWNLOAD_DRAFT.PARAGRAPH_1}
|
|
</div>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<Grid row>
|
|
<Grid col={7}>
|
|
<h2>{EXPLORE_COPY.NOTE_ON_TERRITORIES.INTRO}</h2>
|
|
<p>{EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_1}</p>
|
|
<p>{EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_2}</p>
|
|
<p>{EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_3}</p>
|
|
<p>{EXPLORE_COPY.NOTE_ON_TERRITORIES.PARA_4}</p>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<Grid row>
|
|
<Grid col={7}>
|
|
<h2>{EXPLORE_COPY.NOTE_ON_TRIBAL_NATIONS.INTRO}</h2>
|
|
<p>{EXPLORE_COPY.NOTE_ON_TRIBAL_NATIONS.PARA_1}</p>
|
|
</Grid>
|
|
</Grid>
|
|
</>
|
|
);
|
|
};
|
|
|
|
|
|
export default MapWrapper;
|