kodadot/nft-gallery

View on GitHub
components/explore/Controls.vue

Summary

Maintainability
Test Coverage
<template>
  <div>
    <MobileControls class="is-hidden-tablet" />
    <DesktopControls class="is-hidden-mobile" />
  </div>
</template>

<script setup lang="ts">
import DesktopControls from './DesktopControls.vue'
import MobileControls from './MobileControls.vue'
</script>