21 lines
583 B
TypeScript
21 lines
583 B
TypeScript
import AuthenticatedLayout from "@/Layouts/AuthenticatedLayout";
|
|
import { Head } from "@inertiajs/react";
|
|
import { PageProps } from "@/types";
|
|
|
|
export default function Dashboard({ auth }: PageProps) {
|
|
return (
|
|
<AuthenticatedLayout
|
|
user={auth.user}
|
|
header={
|
|
<h2 className="font-semibold text-xl leading-tight">
|
|
Dashboard
|
|
</h2>
|
|
}
|
|
>
|
|
<Head title="Dashboard" />
|
|
|
|
<div className="flex flex-col gap-4 md:gap-8"></div>
|
|
</AuthenticatedLayout>
|
|
);
|
|
}
|