23 lines
560 B
TypeScript
23 lines
560 B
TypeScript
import CreateTeamForm from '@/Pages/Teams/Partials/CreateTeamForm';
|
|
import AppLayout from '@/Layouts/AppLayout';
|
|
import React from 'react';
|
|
|
|
export default function Create() {
|
|
return (
|
|
<AppLayout
|
|
title="Create Team"
|
|
renderHeader={() => (
|
|
<h2 className="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
|
|
Create Team
|
|
</h2>
|
|
)}
|
|
>
|
|
<div>
|
|
<div className="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
|
|
<CreateTeamForm />
|
|
</div>
|
|
</div>
|
|
</AppLayout>
|
|
);
|
|
}
|