kodadot/nft-gallery

View on GitHub
components/gallery/GalleryItemTabsPanel/GalleryItemOffers.vue

Summary

Maintainability
Test Coverage
<template>
  <div class="h-full flex flex-col">
    <GalleryItemTradesTable
      :nft-id="nftId"
      :type="TradeType.OFFER"
    />
  </div>
</template>

<script setup lang="ts">
import GalleryItemTradesTable from './GalleryItemTradesTable.vue'
import { TradeType } from '@/composables/useTrades'

defineProps<{
  nftId: string
}>()
</script>