React foreach in JSX
问题 I have a object that I want to output via REACT question = { text: "Is this a good question?", answers: [ "Yes", "No", "I don't know" ] } and my react component (cut down), is another component class QuestionSet extends Component { render(){ <div className="container"> <h1>{this.props.question.text}</h1> {this.props.question.answers.forEach(answer => { console.log("Entered"); //This does ifre <Answer answer={answer} /> //THIS DOES NOT WORK })} } export default QuestionSet; as you can see from