Posts by victorgvargas • 33 points
4 posts
-
-1
votes1
answer35
viewsQ: How to fetch next pages until they run out
Good afternoon. I have the following code import React,{Component} from 'react'; import './App.css'; class App extends Component { constructor(){ super(); this.state={ pokemonList : [], count : 0,…
reactasked victorgvargas 33 -
1
votes1
answer830
viewsQ: Typeerror: pokemonList.map is not a Function
Good afternoon. I have the following code snippet: import React,{Component} from 'react'; import './App.css'; class App extends Component { constructor(){ super(); this.state={ pokemonList : [] } }…
reactasked victorgvargas 33 -
0
votes2
answers262
viewsQ: How to pass props to the state in React
Good afternoon. I’m developing a calculator app with React. I would like to know how to pass the value of a property from one of my buttons to the state value. For example: button 7, pass its value…
reactasked victorgvargas 33 -
0
votes1
answer37
viewsQ: Why is nothing from my React app displayed?
I have an React app with the following code in App.js: import React, {Component} from 'react'; class App extends Component { constructor(){ super(); this.state = { firstNumber : 0, secondNumber : 0,…
reactasked victorgvargas 33