Posts by Gustavo Bordin • 111 points
4 posts
-
1
votes1
answer747
viewsA: Search filter with React
The useEffect has an array of dependencies, ALL states you place within that array will cause the entire process within useEffect to occur again whenever any of these states change. Example:…
-
2
votes1
answer43
viewsA: Node.js does not run correctly
This error occurs when you try run the file and Node cannot find it, make sure you are passing the correct location of the server.js file, In the photo, your file is inside the folder src, then…
-
1
votes1
answer332
viewsA: React with Hooks, useState, the value sends to each input and does not show on the screen.?
Hello, Rebecca! From what I understand in your code, you tried to enter values to estado result using the result.push. The correct to enter values in this case would be to use: setResult([…
-
1
votes2
answers179
viewsA: Should I compose every HTML that repeats?
Directly Not, you should not compose all HTML repeating. The advantage of using componentization is to separate the application into blocks, these blocks are not exclusively repeating codes, but…