Sha256: 2d3f69fdc782034fe1874ae59418b9a7c72bf1b05c8931a61ed00189fa9d66f6

Contents?: true

Size: 764 Bytes

Versions: 7

Compression:

Stored size: 764 Bytes

Contents

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 text-gray-800 dark:text-gray-200 leading-tight">Dashboard</h2>}
    >
      <Head title="Dashboard" />

      <div className="py-12">
        <div className="max-w-7xl mx-auto sm:px-6 lg:px-8">
          <div className="bg-white dark:bg-gray-800 overflow-hidden shadow-sm sm:rounded-lg">
            <div className="p-6 text-gray-900 dark:text-gray-100">You're logged in!</div>
          </div>
        </div>
      </div>
    </AuthenticatedLayout>
  )
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
kaze-0.15.0 stubs/inertia-react-ts/app/javascript/Pages/Dashboard.tsx
kaze-0.14.0 stubs/inertia-react-ts/app/javascript/Pages/Dashboard.tsx
kaze-0.13.0 stubs/inertia-react-ts/app/javascript/Pages/Dashboard.tsx
kaze-0.12.0 stubs/inertia-react-ts/app/javascript/Pages/Dashboard.tsx
kaze-0.11.0 stubs/inertia-react-ts/app/javascript/Pages/Dashboard.tsx
kaze-0.10.0 stubs/inertia-react-ts/app/javascript/Pages/Dashboard.tsx
kaze-0.9.0 stubs/inertia-react-ts/app/javascript/Pages/Dashboard.tsx