automngr/resources/js/Pages/Teams/Create.vue

28 lines
567 B
Vue

<template>
<app-layout>
<template #header>
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
Create Team
</h2>
</template>
<div>
<div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
<create-team-form />
</div>
</div>
</app-layout>
</template>
<script>
import AppLayout from '@/Layouts/AppLayout';
import CreateTeamForm from './CreateTeamForm';
export default {
components: {
AppLayout,
CreateTeamForm,
},
};
</script>