1import React, {Component} from 'react'
2
3class Pigeons extends Component {
4 constructor() {
5 super()
6 this.state = {
7 pigeons: []
8 }
9 }
10 render() {
11 return (
12 <div>
13 <p>Look at all the pigeons spotted today!</p>
14 <ul>
15 {this.state.pigeons.map(pigeonURL => {
16 return <li><img src={pigeonURL} /></li>
17 })}
18 </ul>
19 </div>
20 )
21 }
22}