Teren-app/resources/js/Pages/Testing.vue
2024-11-19 12:49:16 +01:00

19 lines
556 B
Vue

<script setup>
import DragDropListEx from '@/Components/DragDropListEx.vue';
import AppLayout from '@/Layouts/AppLayout.vue';
</script>
<template>
<AppLayout title="Testing">
<div class="pt-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="bg-white overflow-hidden shadow-xl sm:rounded-lg">
<div class="grid grid-flow-col">
<DragDropListEx />
</div>
</div>
</div>
</div>
</AppLayout>
</template>