mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-07-28 01:01:16 -07:00
* add legend and styling for map page * update header to latest style/content * add contact page * add methodology page #199 and #200
19 lines
462 B
TypeScript
19 lines
462 B
TypeScript
import React from 'react';
|
|
|
|
const MapLegend = () => {
|
|
return (
|
|
<>
|
|
<dl className={'j40-maplegend'}>
|
|
<h4>Color Key</h4>
|
|
<dt className={'mapsquare-a'}> </dt>
|
|
<dd>Prioritized community</dd>
|
|
<dt className={'mapsquare-b'}> </dt>
|
|
<dd>Threshold community</dd>
|
|
<dt className={'mapsquare-c'}>$nbsp;</dt>
|
|
<dd>Non-Prioritized community</dd>
|
|
</dl>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default MapLegend;
|