koel/resources/assets/js/components/profile-preferences/Integrations.vue
2024-07-06 17:45:01 +02:00

15 lines
385 B
Vue

<template>
<div class="space-y-5">
<article>
<SpotifyIntegration />
</article>
<article>
<LastfmIntegration />
</article>
</div>
</template>
<script lang="ts" setup>
import LastfmIntegration from '@/components/profile-preferences/LastfmIntegration.vue'
import SpotifyIntegration from '@/components/profile-preferences/SpotifyIntegration.vue'
</script>