Files
solidtime/resources/js/Pages/Teams/Create.vue
2024-03-13 16:46:58 +01:00

22 lines
564 B
Vue

<script setup lang="ts">
import AppLayout from '@/Layouts/AppLayout.vue';
import CreateTeamForm from '@/Pages/Teams/Partials/CreateTeamForm.vue';
</script>
<template>
<AppLayout title="Create Team">
<template #header>
<h2
class="font-semibold text-xl text-white leading-tight">
Create Team
</h2>
</template>
<div>
<div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
<CreateTeamForm />
</div>
</div>
</AppLayout>
</template>