Posts by bielb2 • 31 points
2 posts
-
0
votes1
answer175
viewsQ: Image gallery in React, how to select the active image and reflect only on the component itself?
Save guys! No bullshit, follow the gif to get a sense of the problem: My list of items is being pulled from a JSON, where in the listing of all my items I made a map(). const [imageSrc, setImageSrc]…
-
0
votes1
answer81
viewsQ: Delete the clicked image from the Storage location
Basically I made a system to favorite images by clicking to save in Storage location. let favorites = JSON.parse(localStorage.getItem('favorites')) || [] localStorage.setItem('favorites',…