I found the solution, it's the first if statement inside render() method.
render() {
const {perguntas, isLoaded} = this.state
if (!isLoaded) {
return <div>Loading...</div>
}
else {
let randomIndex = Math.floor(Math.random() * 10)
let pergunta = perguntas[randomIndex]
let texto = pergunta.texto
let opcao1 = pergunta.opcao1
let opcao2 = pergunta.opcao2
let opcao3 = pergunta.opcao3
let opcao4 = pergunta.opcao4
//let imagem = pergunta.urlImagem
return (
<Pergunta texto={texto} opcao1={opcao1} opcao2={opcao2} opcao3={opcao3} opcao4={opcao4}/>
)
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…