Passing an Array from one UseState to Another
I’m currently trying to figure out how to pass an array from one useState object to another across two different components. In my first useState I have an array called imagesOriginal, which gets filled with file paths dynamically to various different images like in the following: [ "https://source.unsplash.com/WLUHO9A_xik/900×900", "https://source.unsplash.com/R4K8S77qtwI/900×900", "https://source.unsplash.com/jJGc21mEh8Q/900×900" ] In my App.js, I… Read More Passing an Array from one UseState to Another