Posts by Alexon da Silva Moreira • 1 point
2 posts
-
0
votes2
answers77
viewsQ: React Redux initState
It’s common when you work with Redux set an initial state, example: const initState = { pagInicial:1, pagAtual:1, maxLinks:2, maxReg:5 } So far so good. Now and when I need an initial state,…
-
0
votes1
answer1659
viewsQ: React dynamic array in imgs
I have the following function to create dynamic array. funcListMap(_ref) { let list = []; _ref.map((i) => { list.push( <ListItem key={i.id}> <h1>{i.id}</h1>…