j40-cejst-2/client/src/components/MapLegend.tsx
TomNUSDS f4f7c35ca8
Site content and style update for sprint2/3 (#279)
* add legend and styling for map page
* update header to latest style/content
* add contact page
* add methodology page
#199 and #200
2021-07-01 07:28:43 -07:00

19 lines
462 B
TypeScript

import React from 'react';
const MapLegend = () => {
return (
<>
<dl className={'j40-maplegend'}>
<h4>Color Key</h4>
<dt className={'mapsquare-a'}>&nbsp;</dt>
<dd>Prioritized community</dd>
<dt className={'mapsquare-b'}>&nbsp;</dt>
<dd>Threshold community</dd>
<dt className={'mapsquare-c'}>$nbsp;</dt>
<dd>Non-Prioritized community</dd>
</dl>
</>
);
};
export default MapLegend;