import {Component} from 'react' class CountryInput extends Component { state = { bands: [] }; render() { let bandInputs = []; for (let i = 0; i <= this.state.bands.length; i++) { // sic! const id = `${this.props.country.code}/${i}`; const value = this.state.bands[i] || ""; bandInputs[i] = } return (