hi i saw the videos all over youtube. I know its simple enough because the guides are all on html, i needed some assistance for the react version.
editt: okay guys i managed to progress a little further:
const { data: NFTBalances } = useNFTBalances();
const totalNFT = NFTBalances?.total;
useEffect(async () => {
if (NFTBalances?.result) {
const NFTs = NFTBalances.result;
for (let NFT of NFTs) {
if (NFT?.metadata) {
NFT.metadata = JSON.parse(NFT.metadata);
NFT.image = NFT.metadata?.image;
}
}
}})
how can i do a loop in the html side to show these images side by side⦠i managed to get the imageurl into a variable