using map with react code example
Example 1: map function in react
function NameList() {
const names = ['Bruce', 'Clark', 'Diana']
return (
<div>
{names.map(name => <h2>{name}</h2>)}
</div>
)
}
Example 2: react map example leaflets
<style>.leaflet-container { height: 400px; width: 800px;}</style>