kodadot/nft-gallery

View on GitHub
composables/useLoader.ts

Summary

Maintainability
A
0 mins
Test Coverage
export default function () {
  const isLoading = ref(false)
  const status = ref('')

  return {
    isLoading,
    status,
  }
}