Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. if ( this.state.displayQuestions ) {
  2. questions = (
  3. <div>
  4. { this.state.questions.map((question, index) => {
  5. return <Question key={question.id}
  6. title={question.title} />
  7. })}
  8. </div>
  9. )
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement