Juan Felipe Zapata Moreno 9c6eeb5fb3 Commit Inicial
2025-08-05 09:52:38 -06:00

13 lines
271 B
Vue

<script setup>
import Welcome from '@/Components/Dashboard/Welcome.vue';
import Layout from '@/Layouts/DashboardLayout.vue';
</script>
<template>
<Layout title="Dashboard">
<div class="py-4">
<Welcome />
</div>
</Layout>
</template>