(props: any)
| 12 | |
| 13 | class ThemeMap extends React.Component<any, any> { |
| 14 | constructor(props: any) { |
| 15 | super(props); |
| 16 | |
| 17 | this.state = { |
| 18 | region: { |
| 19 | latitude: LATITUDE, |
| 20 | longitude: LONGITUDE, |
| 21 | latitudeDelta: LATITUDE_DELTA, |
| 22 | longitudeDelta: LONGITUDE_DELTA, |
| 23 | }, |
| 24 | }; |
| 25 | } |
| 26 | |
| 27 | render() { |
| 28 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected