import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout'; import { Head } from '@inertiajs/react'; import { PageProps } from '@/types'; export default function Dashboard({ auth }: PageProps) { return ( Dashboard} >
You're logged in!
); }