2023-12-23 22:49:23 +01:00

21 lines
257 B
Vue

<template>
<NcLoadingIcon class="loading" />
</template>
<script>
import { NcLoadingIcon } from '@nextcloud/vue'
export default {
name: 'Loading',
components: {
NcLoadingIcon,
},
}
</script>
<style scoped>
.loading {
margin: 2rem 0;
}
</style>