33 | {allTokens.map((token, index) => {
34 | const ownerExists: boolean = token.owner !== NULL_ADDRESS
35 | return (
36 |
37 |
{token.metadata.name}
38 |

39 |
57 |
owner? : {token.owner === address ? 'true' : 'false'}
58 |
59 |
60 | )
61 | })}
62 |
63 | >
64 | )
65 | }
66 |
67 | export { Component as NFTList }
68 |
--------------------------------------------------------------------------------
/components/elements/NftImage.tsx:
--------------------------------------------------------------------------------
1 | import { AspectRatio, Flex, Spinner, Text } from '@chakra-ui/react'
2 | import Image from 'next/image'
3 | import React from 'react'
4 |
5 | export type NftImageProps = {
6 | imageUri?: string
7 | }
8 |
9 | const Component: React.FC